Author: Armin Rigo <[email protected]>
Branch: 
Changeset: r1314:b3024e60ca54
Date: 2013-08-01 17:05 +0200
http://bitbucket.org/cffi/cffi/changeset/b3024e60ca54/

Log:    Don't care too much about the ctypes backend

diff --git a/testing/test_function.py b/testing/test_function.py
--- a/testing/test_function.py
+++ b/testing/test_function.py
@@ -383,6 +383,8 @@
         assert x == math.sin(1.23) + 100
 
     def test_free_callback_cycle(self):
+        if self.Backend is CTypesBackend:
+            py.test.skip("seems to fail with the ctypes backend on windows")
         import weakref
         def make_callback(data):
             container = [data]
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to