[pypy-commit] cffi default: Skip test

arigo noreply at buildbot.pypy.org
Tue Nov 20 23:54:22 CET 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r1056:b8678b78116d
Date: 2012-11-20 23:54 +0100
http://bitbucket.org/cffi/cffi/changeset/b8678b78116d/

Log:	Skip test

diff --git a/testing/test_verify.py b/testing/test_verify.py
--- a/testing/test_verify.py
+++ b/testing/test_verify.py
@@ -1309,6 +1309,8 @@
     assert func() == 42
 
 def test_FILE_stored_in_stdout():
+    if sys.platform == 'win32':
+        py.test.skip("MSVC: cannot assign to stdout")
     ffi = FFI()
     ffi.cdef("int printf(const char *, ...); FILE *setstdout(FILE *);")
     lib = ffi.verify("""


More information about the pypy-commit mailing list