[pypy-commit] pypy default: skip test (fow now?) that not only crashes but seems to ruin the rest of the test run on buildbot

mattip noreply at buildbot.pypy.org
Fri Apr 12 10:02:27 CEST 2013


Author: mattip <matti.picus at gmail.com>
Branch: 
Changeset: r63272:1d1c1b2fe42a
Date: 2013-04-12 11:01 +0300
http://bitbucket.org/pypy/pypy/changeset/1d1c1b2fe42a/

Log:	skip test (fow now?) that not only crashes but seems to ruin the
	rest of the test run on buildbot

diff --git a/rpython/jit/backend/test/test_zll_stress_0.py b/rpython/jit/backend/test/test_zll_stress_0.py
--- a/rpython/jit/backend/test/test_zll_stress_0.py
+++ b/rpython/jit/backend/test/test_zll_stress_0.py
@@ -1,4 +1,7 @@
 from rpython.jit.backend.test import zll_stress
-
+import py
 def test_stress_0():
+    import sys
+    if sys.platform.startswith('win'):
+        py.test.skip('crashes test platform, fix crash and reenable test')
     zll_stress.do_test_stress(0)


More information about the pypy-commit mailing list