X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Ftest-daemon.py;h=816304fa075df1102630c347c8bb918763438532;hb=1e276d1a10539a8cd97d2ad63c073a9a43f0f1ef;hp=586e0ec3606ab50422907816eb450c231d0e6405;hpb=00c08589876b7c1cd8f57e5ebb3e66bb164c5a3d;p=openvswitch diff --git a/tests/test-daemon.py b/tests/test-daemon.py index 586e0ec3..816304fa 100644 --- a/tests/test-daemon.py +++ b/tests/test-daemon.py @@ -13,6 +13,7 @@ # limitations under the License. import getopt +import logging import signal import sys import time @@ -20,10 +21,13 @@ import time import ovs.daemon import ovs.util -def handler(signum, frame): + +def handler(signum, _): raise Exception("Signal handler called with %d" % signum) + def main(argv): + logging.basicConfig(level=logging.DEBUG) signal.signal(signal.SIGHUP, handler) @@ -55,6 +59,7 @@ def main(argv): while True: time.sleep(1) + def usage(): sys.stdout.write("""\ %s: Open vSwitch daemonization test program for Python