~ubuntu-branches/ubuntu/quantal/m2crypto/quantal

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Description: fix kill signal
 use signal 9 to kill old s_server processes
 to work around build HUP signal-ignore-mask (LP: #451998).
Author: Chuck Short <zulcss@ubuntu.com>
Origin: 0.20.1-1ubuntu1
Bug-Ubuntu: https://bugs.launchpad.net/bugs/451998
--- m2crypto-0.20.1.orig/tests/test_ssl.py
+++ m2crypto-0.20.1/tests/test_ssl.py
@@ -92,7 +92,7 @@ class BaseSSLClientTestCase(unittest.Tes
             return pid
 
     def stop_server(self, pid):
-        os.kill(pid, 1)
+        os.kill(pid, 9)
         os.waitpid(pid, 0)
 
     def http_get(self, s):