# HG changeset patch # User Simon Heimberg # Date 2014-02-12 15:09:18 # Node ID acbd19b9fbe144ebe7096a3de79897b628993176 # Parent 0cf1c8c452d3db74c8cd56f3475cf6e57a6b799f tests: killdaemons.py for windows distinguishes access violation and terminated To distinguish between access violaition (process belonging to another user) and a terminated process, PROCESS_QUERY_INFORMATION must be enabled. But TerminateProcess still raises error 5 in both cases. Therefore check before if the process has already terminated. diff --git a/tests/killdaemons.py b/tests/killdaemons.py --- a/tests/killdaemons.py +++ b/tests/killdaemons.py @@ -15,17 +15,24 @@ if os.name =='nt': def kill(pid, logfn, tryhard=True): logfn('# Killing daemon process %d' % pid) PROCESS_TERMINATE = 1 + PROCESS_QUERY_INFORMATION = 0x400 SYNCHRONIZE = 0x00100000L WAIT_OBJECT_0 = 0 WAIT_TIMEOUT = 258 handle = ctypes.windll.kernel32.OpenProcess( - PROCESS_TERMINATE|SYNCHRONIZE, False, pid) + PROCESS_TERMINATE|SYNCHRONIZE|PROCESS_QUERY_INFORMATION, + False, pid) if handle == 0: _check(0, 87) # err 87 when process not found return # process not found, already finished try: - _check(ctypes.windll.kernel32.TerminateProcess(handle, -1), 5) - # windows error 5 when process does not exist or no access TODO + r = ctypes.windll.kernel32.WaitForSingleObject(handle, 100) + if r == WAIT_OBJECT_0: + pass # terminated, but process handle still available + elif r == WAIT_TIMEOUT: + _check(ctypes.windll.kernel32.TerminateProcess(handle, -1)) + else: + _check(r) # TODO?: forcefully kill when timeout # and ?shorter waiting time? when tryhard==True