[pypy-commit] pypy default: Skip on Windows.

arigo noreply at buildbot.pypy.org
Thu Aug 11 14:07:47 CEST 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r46435:86a22860a457
Date: 2011-08-11 14:10 +0200
http://bitbucket.org/pypy/pypy/changeset/86a22860a457/

Log:	Skip on Windows.

diff --git a/pypy/jit/metainterp/test/test_ajit.py b/pypy/jit/metainterp/test/test_ajit.py
--- a/pypy/jit/metainterp/test/test_ajit.py
+++ b/pypy/jit/metainterp/test/test_ajit.py
@@ -2631,6 +2631,8 @@
         self.check_loops(new_with_vtable=1)
 
     def test_release_gil_flush_heap_cache(self):
+        if sys.platform == "win32":
+            py.test.skip("needs 'time'")
         T = rffi.CArrayPtr(rffi.TIME_T)
 
         external = rffi.llexternal("time", [T], rffi.TIME_T, threadsafe=True)


More information about the pypy-commit mailing list