Author: Christian Tismer <[email protected]>
Branch: win64 test
Changeset: r45452:25e6867dbd85
Date: 2011-07-11 02:47 +0200
http://bitbucket.org/pypy/pypy/changeset/25e6867dbd85/

Log:    Annoying bug, presumably in ctypes on win64. test_ll2ctypes.py
        test_get_errno 32bit always ok 64bit py 2.6.7 ok 64bit py 2.7.2
        breaks

        contimuing with 2.6.7 for now. (grumble)

diff --git a/pypy/rpython/lltypesystem/test/test_ll2ctypes.py 
b/pypy/rpython/lltypesystem/test/test_ll2ctypes.py
--- a/pypy/rpython/lltypesystem/test/test_ll2ctypes.py
+++ b/pypy/rpython/lltypesystem/test/test_ll2ctypes.py
@@ -717,8 +717,8 @@
         assert not ALLOCATED     # detects memory leaks in the test
 
     def test_get_errno(self):
-        if is_emulated_long:
-            py.test.skip("skipped temporarily, no idea yet what the error is!")
+        # win64: works with python 2.7.6, but not with 2.7.2
+        # XXX check what is different with ctypes!
         eci = ExternalCompilationInfo(includes=['string.h'])
         if sys.platform.startswith('win'):
             underscore_on_windows = '_'
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to