chiark
/
gitweb
/
~mdw
/
disorder
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
4692cf6
)
List processes after daemon is supposed to be stopped (it's still not
author
Richard Kettlewell
<rjk@greenend.org.uk>
Sat, 13 Mar 2010 10:33:48 +0000
(10:33 +0000)
committer
Richard Kettlewell
<rjk@greenend.org.uk>
Sat, 13 Mar 2010 10:33:48 +0000
(10:33 +0000)
stopped in some case).
tests/dtest.py
patch
|
blob
|
blame
|
history
diff --git
a/tests/dtest.py
b/tests/dtest.py
index ec42e702ff7b1c805291c365bce0e4c8b0643bc0..a5a8be9c7c483ad2de06fad4831e8857ec1526de 100644
(file)
--- 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"