Author: mattip <[email protected]>
Branch:
Changeset: r77548:9b9c89d1a305
Date: 2015-05-25 19:25 +0300
http://bitbucket.org/pypy/pypy/changeset/9b9c89d1a305/
Log: skip these on win32
diff --git a/pypy/module/pypyjit/test_pypy_c/test_ffi.py
b/pypy/module/pypyjit/test_pypy_c/test_ffi.py
--- a/pypy/module/pypyjit/test_pypy_c/test_ffi.py
+++ b/pypy/module/pypyjit/test_pypy_c/test_ffi.py
@@ -208,6 +208,8 @@
""", ignore_ops=['guard_not_invalidated'])
def test__cffi_call_c_int(self):
+ if sys.platform == 'win32':
+ py.test.skip("XXX re-optimize _ffi for the JIT?")
def main():
import os
try:
@@ -248,6 +250,8 @@
""" % extra, ignore_ops=['guard_not_invalidated'])
def test__cffi_call_size_t(self):
+ if sys.platform == 'win32':
+ py.test.skip("XXX re-optimize _ffi for the JIT?")
def main():
import os
try:
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit