]> granicus.if.org Git - python/commitdiff
bpo-22273: Re-enabled ctypes test on ARM machines. (GH-16388)
authorVinay Sajip <vinay_sajip@yahoo.co.uk>
Wed, 25 Sep 2019 14:05:55 +0000 (15:05 +0100)
committerGitHub <noreply@github.com>
Wed, 25 Sep 2019 14:05:55 +0000 (15:05 +0100)
Lib/ctypes/test/test_structures.py

index 661efc1a0f858c7b06e0df965b3e902c7d381857..fedcae24dfd3a28d73851b0c7cbd2b60c6eb3fa1 100644 (file)
@@ -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