diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2019-09-25 14:05:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-25 14:05:55 (GMT) |
commit | 417089e88bd4ea146b9497e06e8edeb58a59cd65 (patch) | |
tree | 982e6f286b2998b02643a7b079d217718c238e1c /Lib | |
parent | faca8553425c231d867dcabf6a69a9dd21118b6c (diff) | |
download | cpython-417089e88bd4ea146b9497e06e8edeb58a59cd65.zip cpython-417089e88bd4ea146b9497e06e8edeb58a59cd65.tar.gz cpython-417089e88bd4ea146b9497e06e8edeb58a59cd65.tar.bz2 |
bpo-22273: Re-enabled ctypes test on ARM machines. (GH-16388)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/ctypes/test/test_structures.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ctypes/test/test_structures.py b/Lib/ctypes/test/test_structures.py index 661efc1..fedcae2 100644 --- a/Lib/ctypes/test/test_structures.py +++ b/Lib/ctypes/test/test_structures.py @@ -480,7 +480,7 @@ class StructureTestCase(unittest.TestCase): self.assertEqual(s.first, got.first) self.assertEqual(s.second, got.second) - @unittest.skipIf(MACHINE.startswith(('arm', 'ppc')), + @unittest.skipIf(MACHINE.startswith('ppc'), 'Test temporarily disabled on this architecture') def test_array_in_struct(self): # See bpo-22273 |