13 lines
596 B
Diff
13 lines
596 B
Diff
|
diff --git a/Lib/ctypes/test/test_structures.py b/Lib/ctypes/test/test_structures.py
|
||
|
index 3eded77..ad7859a 100644
|
||
|
--- a/Lib/ctypes/test/test_structures.py
|
||
|
+++ b/Lib/ctypes/test/test_structures.py
|
||
|
@@ -392,6 +392,7 @@ class StructureTestCase(unittest.TestCase):
|
||
|
(1, 0, 0, 0, 0, 0))
|
||
|
self.assertRaises(TypeError, lambda: Z(1, 2, 3, 4, 5, 6, 7))
|
||
|
|
||
|
+ @unittest.skip('Fails on aarch64: http://bugs.python.org/issue29804')
|
||
|
def test_pass_by_value(self):
|
||
|
# This should mirror the structure in Modules/_ctypes/_ctypes_test.c
|
||
|
class X(Structure):
|