Author: Armin Rigo <ar...@tunes.org>
Branch: 
Changeset: r994:2b9a8ee9b5b8
Date: 2012-10-09 11:55 +0200
http://bitbucket.org/cffi/cffi/changeset/2b9a8ee9b5b8/

Log:    More Windows compat

diff --git a/testing/test_verify.py b/testing/test_verify.py
--- a/testing/test_verify.py
+++ b/testing/test_verify.py
@@ -1074,7 +1074,7 @@
     ffi.cdef("struct foo_s { _Bool x; };"
              "_Bool foo(_Bool);")
     lib = ffi.verify("""
-        struct foo_s { _Bool x; };
+        struct foo_s { char x; };
         int foo(int arg) {
             return !arg;
         }
@@ -1117,7 +1117,7 @@
     ffi = FFI()
     ffi.cdef("long double square(long double f); _Bool opposite(_Bool);")
     lib = ffi.verify("long double square(long double f) { return f*f; }\n"
-                     "_Bool opposite(_Bool x) { return !x; }")
+                     "int opposite(int x) { return !x; }")
     f0 = lib.square(0.0)
     f2 = lib.square(f)
     f3 = lib.square(f * 2.0)
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to