Skip to content

Commit

Permalink
bpo-22273: Re-enabled ctypes test on ARM machines. (pythonGH-16388)
Browse files Browse the repository at this point in the history
  • Loading branch information
vsajip authored Sep 25, 2019
1 parent faca855 commit 417089e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/ctypes/test/test_structures.py
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ class X(Structure):
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
Expand Down

0 comments on commit 417089e

Please sign in to comment.