Author: mattip <[email protected]>
Branch:
Changeset: r63351:30cad223b92c
Date: 2013-04-15 00:43 +0300
http://bitbucket.org/pypy/pypy/changeset/30cad223b92c/
Log: skip hanging SIGINT test on windows
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,6 +25,9 @@
__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():
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit