From 53e8f9c573282cbe8f96a6b07d657f834a4f44e0 Mon Sep 17 00:00:00 2001 Message-Id: <53e8f9c573282cbe8f96a6b07d657f834a4f44e0.1715519085.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sat, 13 Mar 2010 10:33:48 +0000 Subject: [PATCH] List processes after daemon is supposed to be stopped (it's still not stopped in some case). Organization: Straylight/Edgeware From: Richard Kettlewell --- tests/dtest.py | 2 ++ 1 file changed, 2 insertions(+) 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" -- [mdw]