[PATCH 3 of 4] tests: killdaemons.py for checks reason when getting no process handle

Simon Heimberg simohe at besonet.ch
Thu Feb 13 15:29:29 CST 2014


# HG changeset patch
# User Simon Heimberg <simohe at besonet.ch>
# Date 1392215939 -3600
#      Wed Feb 12 15:38:59 2014 +0100
# Node ID 2b97432d8b151b09df176d0b961b276046ecda4d
# Parent  86a6ffe73f730b6b8f9d39d6b81e866ce4abadb2
tests: killdaemons.py for checks reason when getting no process handle

diff -r 86a6ffe73f73 -r 2b97432d8b15 tests/killdaemons.py
--- a/tests/killdaemons.py	Fri Jan 17 21:13:20 2014 +0100
+++ b/tests/killdaemons.py	Wed Feb 12 15:38:59 2014 +0100
@@ -21,7 +21,7 @@
         handle = ctypes.windll.kernel32.OpenProcess(
                 PROCESS_TERMINATE|SYNCHRONIZE, False, pid)
         if handle == 0:
-            # TODO: call _check(0, expected) to check if "process not found"
+            _check(0, 87) # err 87 when process not found
             return # process not found, already finished
         try:
             _check(ctypes.windll.kernel32.TerminateProcess(handle, -1), 5)




More information about the Mercurial-devel mailing list