From: Richard Kettlewell Date: Sat, 13 Mar 2010 10:33:48 +0000 (+0000) Subject: List processes after daemon is supposed to be stopped (it's still not X-Git-Tag: 5.0~8 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/commitdiff_plain/53e8f9c573282cbe8f96a6b07d657f834a4f44e0 List processes after daemon is supposed to be stopped (it's still not stopped in some case). --- diff --git a/tests/dtest.py b/tests/dtest.py index ec42e70..a5a8be9 100644 --- a/tests/dtest.py +++ b/tests/dtest.py @@ -286,6 +286,7 @@ def stop_daemon(): Stop the daemon if it has not stopped already""" global daemon if daemon == None: + print " (daemon not running)" return rc = daemon.poll() if rc == None: @@ -339,6 +340,7 @@ def run(module=None, report=True): failures += 1 finally: stop_daemon() + os.system("ps -ef | grep disorderd") if report: if failures: print " FAILED"