[pypy-svn] r65210 - pypy/branch/pyjitpl5/lib-python

fijal at codespeak.net fijal at codespeak.net
Mon May 11 00:55:01 CEST 2009


Author: fijal
Date: Mon May 11 00:55:00 2009
New Revision: 65210

Modified:
   pypy/branch/pyjitpl5/lib-python/conftest.py
Log:
Quick'n'dirty hack to skip all tests that require thread. Ideally
we would detect what kind of translation provide what modules, but not yet.


Modified: pypy/branch/pyjitpl5/lib-python/conftest.py
==============================================================================
--- pypy/branch/pyjitpl5/lib-python/conftest.py	(original)
+++ pypy/branch/pyjitpl5/lib-python/conftest.py	Mon May 11 00:55:00 2009
@@ -628,6 +628,9 @@
             else:
                 msg = regrtest.skip
             py.test.skip(msg)
+        # XXX evil hack
+        if 'thread' in regrtest.usemodules:
+            py.test.skip("uses thread")
         (skipped, exit_status, test_stdout,
                                test_stderr) = self.getresult(regrtest)
         if skipped:



More information about the Pypy-commit mailing list