Title: [174634] trunk/Tools
Revision
174634
Author
[email protected]
Date
2014-10-11 10:27:06 -0700 (Sat, 11 Oct 2014)

Log Message

After r174628 we send the test process a SIGTERM before the SIGKILL.

* Scripts/webkitpy/common/system/executive_unittest.py:
(ExecutiveTest.serial_test_kill_process):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (174633 => 174634)


--- trunk/Tools/ChangeLog	2014-10-11 16:22:32 UTC (rev 174633)
+++ trunk/Tools/ChangeLog	2014-10-11 17:27:06 UTC (rev 174634)
@@ -1,3 +1,10 @@
+2014-10-11  Simon Fraser  <[email protected]>
+
+        After r174628 we send the test process a SIGTERM before the SIGKILL.
+
+        * Scripts/webkitpy/common/system/executive_unittest.py:
+        (ExecutiveTest.serial_test_kill_process):
+
 2014-10-11  KwangHyuk Kim  <[email protected]>
 
         [EFL] Enable WebP support.

Modified: trunk/Tools/Scripts/webkitpy/common/system/executive_unittest.py (174633 => 174634)


--- trunk/Tools/Scripts/webkitpy/common/system/executive_unittest.py	2014-10-11 16:22:32 UTC (rev 174633)
+++ trunk/Tools/Scripts/webkitpy/common/system/executive_unittest.py	2014-10-11 17:27:06 UTC (rev 174634)
@@ -179,7 +179,7 @@
             # cygwin seems to give us either SIGABRT or SIGKILL
             self.assertIn(process.wait(), (-signal.SIGABRT, -signal.SIGKILL))
         else:
-            expected_exit_code = -signal.SIGKILL
+            expected_exit_code = -signal.SIGTERM
             self.assertEqual(process.wait(), expected_exit_code)
 
         # Killing again should fail silently.
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to