[pypy-svn] r78979 - pypy/trunk/pypy/module/_stackless/test

afa at codespeak.net afa at codespeak.net
Wed Nov 10 20:08:14 CET 2010


Author: afa
Date: Wed Nov 10 20:08:12 2010
New Revision: 78979

Added:
   pypy/trunk/pypy/module/_stackless/test/conftest.py   (contents, props changed)
Log:
Skip stackless tests on Windows: they segfault :-(


Added: pypy/trunk/pypy/module/_stackless/test/conftest.py
==============================================================================
--- (empty file)
+++ pypy/trunk/pypy/module/_stackless/test/conftest.py	Wed Nov 10 20:08:12 2010
@@ -0,0 +1,7 @@
+import sys
+import py.test
+
+def pytest_runtest_setup(item):
+    if sys.platform == 'win32':
+        py.test.skip("stackless tests segfault on Windows")
+



More information about the Pypy-commit mailing list