[pypy-commit] pypy default: revert bogus skip, fix tests don't skip them

mattip noreply at buildbot.pypy.org
Mon Apr 15 09:20:15 CEST 2013


Author: mattip <matti.picus at gmail.com>
Branch: 
Changeset: r63360:3dec220af6fd
Date: 2013-04-15 10:19 +0300
http://bitbucket.org/pypy/pypy/changeset/3dec220af6fd/

Log:	revert bogus skip, fix tests don't skip them added print prevents
	hang on untranslated windows perhaps connected to the order of
	translating rlib.rposix to a dll and calling start_new_thread

diff --git a/pypy/module/__pypy__/test/test_signal.py b/pypy/module/__pypy__/test/test_signal.py
--- a/pypy/module/__pypy__/test/test_signal.py
+++ b/pypy/module/__pypy__/test/test_signal.py
@@ -25,9 +25,6 @@
             __pypy__.thread._signals_enter()
 
     def test_enable_signals(self):
-        import sys
-        if sys.platform.startswith('win'):
-            skip('signals not operable on windows')
         import __pypy__, thread, signal, time
 
         def subthread():
@@ -50,8 +47,9 @@
             try:
                 done = []
                 interrupted = []
+                print 'starting',i
                 thread.start_new_thread(subthread, ())
-                for i in range(10):
+                for j in range(10):
                     if len(done): break
                     print '.'
                     time.sleep(0.1)


More information about the pypy-commit mailing list