[Python-checkins] python/dist/src/Lib/test test_threadsignals.py, 1.1, 1.2

mwh at users.sourceforge.net mwh at users.sourceforge.net
Tue Aug 3 17:35:31 CEST 2004


Update of /cvsroot/python/python/dist/src/Lib/test
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9878

Modified Files:
	test_threadsignals.py 
Log Message:
Add the same guard as test_signal.


Index: test_threadsignals.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_threadsignals.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** test_threadsignals.py	3 Aug 2004 14:37:14 -0000	1.1
--- test_threadsignals.py	3 Aug 2004 15:35:29 -0000	1.2
***************
*** 7,10 ****
--- 7,13 ----
  from test import test_support
  
+ 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 },



More information about the Python-checkins mailing list