From: Michael W. Hudson Date: Wed, 4 Aug 2004 14:22:56 +0000 (+0000) Subject: To ever run this test "you must import TestSkipped" from the right X-Git-Tag: v2.4a2~10 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=574a25127a5e0d21483f3b7432798329b49fe112;p=python To ever run this test "you must import TestSkipped" from the right place! (can that please be it for silly mistakes in this file? :-) I know I started it, but...). Also, rearrangements to run repeatedly. --- diff --git a/Lib/test/test_threadsignals.py b/Lib/test/test_threadsignals.py index 778879d5ed..fa58d76bd4 100644 --- a/Lib/test/test_threadsignals.py +++ b/Lib/test/test_threadsignals.py @@ -5,15 +5,11 @@ import thread import signal import os import sys -from test import test_support, TestSkipped +from test.test_support import run_unittest, TestSkipped if sys.platform[:3] in ('win', 'os2') or sys.platform=='riscos': raise TestSkipped, "Can't test signal on %s" % sys.platform -signal_blackboard = { signal.SIGUSR1 : {'tripped': 0, 'tripped_by': 0 }, - signal.SIGUSR2 : {'tripped': 0, 'tripped_by': 0 }, - signal.SIGALRM : {'tripped': 0, 'tripped_by': 0 } } - process_pid = os.getpid() signalled_all=thread.allocate_lock() @@ -65,15 +61,22 @@ class ThreadSignals(unittest.TestCase): self.assertEqual( signal_blackboard[signal.SIGUSR2]['tripped'], 1) self.assertEqual( signal_blackboard[signal.SIGUSR2]['tripped_by'], thread.get_ident()) + signalled_all.release() def spawnSignallingThread(self): thread.start_new_thread(send_signals, ()) def test_main(): + global signal_blackboard + + signal_blackboard = { signal.SIGUSR1 : {'tripped': 0, 'tripped_by': 0 }, + signal.SIGUSR2 : {'tripped': 0, 'tripped_by': 0 }, + signal.SIGALRM : {'tripped': 0, 'tripped_by': 0 } } + oldsigs = registerSignals((handle_signals, handle_signals, handle_signals)) try: - test_support.run_unittest(ThreadSignals) + run_unittest(ThreadSignals) finally: registerSignals(oldsigs)