[pypy-commit] pypy default: Skip the test about byte-swapped structures, for now

arigo pypy.commits at gmail.com
Sun May 28 10:48:12 EDT 2017


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r91431:844e78f165f3
Date: 2017-05-28 16:47 +0200
http://bitbucket.org/pypy/pypy/changeset/844e78f165f3/

Log:	Skip the test about byte-swapped structures, for now

diff --git a/lib-python/2.7/ctypes/test/test_unaligned_structures.py b/lib-python/2.7/ctypes/test/test_unaligned_structures.py
--- a/lib-python/2.7/ctypes/test/test_unaligned_structures.py
+++ b/lib-python/2.7/ctypes/test/test_unaligned_structures.py
@@ -37,7 +37,10 @@
         for typ in byteswapped_structures:
 ##            print >> sys.stderr, typ.value
             self.assertEqual(typ.value.offset, 1)
-            o = typ()
+            try:
+                o = typ()
+            except NotImplementedError as e:
+                self.skipTest(str(e))    # for PyPy
             o.value = 4
             self.assertEqual(o.value, 4)
 


More information about the pypy-commit mailing list