[Xfce4-commits] <midori:master> Use signal 9 (SIGKILL) on timed out unit tests
Christian Dywan
noreply at xfce.org
Thu Jan 31 08:54:02 CET 2013
Updating branch refs/heads/master
to 5fbe476ed3724df05c0f10cf652439791bf2d768 (commit)
from 6313c0140d9593ccf8082fe4be45c1c4f56235cc (commit)
commit 5fbe476ed3724df05c0f10cf652439791bf2d768
Author: Christian Dywan <christian at twotoasts.de>
Date: Thu Jan 31 08:07:31 2013 +0100
Use signal 9 (SIGKILL) on timed out unit tests
wscript | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/wscript b/wscript
index 1659dcb..8ff4f6c 100644
--- a/wscript
+++ b/wscript
@@ -585,7 +585,7 @@ def shutdown ():
import threading
def t_kill ():
Utils.pprint ('RED', 'timed out')
- os.kill (pp.pid, 0)
+ os.kill (pp.pid, 9) # SIGKILL
t = threading.Timer (42, t_kill)
t.start ()
if is_mingw (Build.bld.env):
More information about the Xfce4-commits
mailing list