[Python-checkins] bpo-22273: Re-enabled ctypes test on ARM machines. (GH-16388)
Vinay Sajip
webhook-mailer at python.org
Wed Sep 25 10:06:06 EDT 2019
https://github.com/python/cpython/commit/417089e88bd4ea146b9497e06e8edeb58a59cd65
commit: 417089e88bd4ea146b9497e06e8edeb58a59cd65
branch: master
author: Vinay Sajip <vinay_sajip at yahoo.co.uk>
committer: GitHub <noreply at github.com>
date: 2019年09月25日T15:05:55+01:00
summary:
bpo-22273: Re-enabled ctypes test on ARM machines. (GH-16388)
files:
M Lib/ctypes/test/test_structures.py
diff --git a/Lib/ctypes/test/test_structures.py b/Lib/ctypes/test/test_structures.py
index 661efc1a0f85..fedcae24dfd3 100644
--- a/Lib/ctypes/test/test_structures.py
+++ b/Lib/ctypes/test/test_structures.py
@@ -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
More information about the Python-checkins
mailing list