[Python-checkins] r51038 - python/trunk/Lib/test/test_signal.py

neal.norwitz python-checkins at python.org
Wed Aug 2 08:19:19 CEST 2006


Author: neal.norwitz
Date: Wed Aug  2 08:19:19 2006
New Revision: 51038

Modified:
   python/trunk/Lib/test/test_signal.py
Log:
Let us know when there was a problem and the child had to kill the parent

Modified: python/trunk/Lib/test/test_signal.py
==============================================================================
--- python/trunk/Lib/test/test_signal.py	(original)
+++ python/trunk/Lib/test/test_signal.py	Wed Aug  2 08:19:19 2006
@@ -87,6 +87,7 @@
             # time for the normal sequence of events to occur.  This is
             # just a stop-gap to prevent the test from hanging.
             time.sleep(MAX_DURATION + 5)
+            print >> sys.__stdout__, '  child should not have to kill parent'
             for i in range(3):
                 os.kill(pid, signal.SIGALARM)
         finally:


More information about the Python-checkins mailing list