[pypy-svn] pypy default: these two tests now pass

antocuni commits-noreply at bitbucket.org
Tue Jan 18 10:59:38 CET 2011


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: 
Changeset: r40836:a74e8c004ff8
Date: 2011-01-18 10:54 +0100
http://bitbucket.org/pypy/pypy/changeset/a74e8c004ff8/

Log:	these two tests now pass

diff --git a/lib-python/modified-2.7.0/ctypes/test/test_callbacks.py b/lib-python/modified-2.7.0/ctypes/test/test_callbacks.py
--- a/lib-python/modified-2.7.0/ctypes/test/test_callbacks.py
+++ b/lib-python/modified-2.7.0/ctypes/test/test_callbacks.py
@@ -99,7 +99,6 @@
 ##        self.check_type(c_char_p, "abc")
 ##        self.check_type(c_char_p, "def")
 
-    @xfail
     def test_pyobject(self):
         o = ()
         from sys import getrefcount as grc

diff --git a/lib-python/modified-2.7.0/ctypes/test/test_cast.py b/lib-python/modified-2.7.0/ctypes/test/test_cast.py
--- a/lib-python/modified-2.7.0/ctypes/test/test_cast.py
+++ b/lib-python/modified-2.7.0/ctypes/test/test_cast.py
@@ -22,7 +22,6 @@
                 self.assertEqual([ptr[i] for i in range(6)],
                                      [0, 42, 0, 17, 0, 2])
 
-    @xfail
     def test_address2pointer(self):
         array = (c_int * 3)(42, 17, 2)
 


More information about the Pypy-commit mailing list