From cc28ed2421bf3953efc0fbde387f28722f3801e2 Mon Sep 17 00:00:00 2001 From: Vinay Sajip Date: Wed, 25 Sep 2019 20:57:20 +0100 Subject: [PATCH] bpo-22273: Removed temporary test skipping on PPC platforms. (GH-16399) --- Lib/ctypes/test/test_structures.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Lib/ctypes/test/test_structures.py b/Lib/ctypes/test/test_structures.py index fedcae24df..0c01c79904 100644 --- a/Lib/ctypes/test/test_structures.py +++ b/Lib/ctypes/test/test_structures.py @@ -6,6 +6,9 @@ from struct import calcsize import _ctypes_test from test import support +# The following definition is meant to be used from time to time to assist +# temporarily disabling tests on specific architectures while investigations +# are in progress, to keep buildbots happy. MACHINE = platform.machine() class SubclassesTest(unittest.TestCase): @@ -480,8 +483,6 @@ class StructureTestCase(unittest.TestCase): self.assertEqual(s.first, got.first) self.assertEqual(s.second, got.second) - @unittest.skipIf(MACHINE.startswith('ppc'), - 'Test temporarily disabled on this architecture') def test_array_in_struct(self): # See bpo-22273 -- 2.50.0