bpo-22273: Removed temporary test skipping on PPC platforms. (GH-16399) · python/cpython@cc28ed2 (original) (raw)

Original file line number Diff line number Diff line change
@@ -6,6 +6,9 @@
6 6 import _ctypes_test
7 7 from test import support
8 8
9 +# The following definition is meant to be used from time to time to assist
10 +# temporarily disabling tests on specific architectures while investigations
11 +# are in progress, to keep buildbots happy.
9 12 MACHINE = platform.machine()
10 13
11 14 class SubclassesTest(unittest.TestCase):
@@ -480,8 +483,6 @@ class X(Structure):
480 483 self.assertEqual(s.first, got.first)
481 484 self.assertEqual(s.second, got.second)
482 485
483 -@unittest.skipIf(MACHINE.startswith('ppc'),
484 - 'Test temporarily disabled on this architecture')
485 486 def test_array_in_struct(self):
486 487 # See bpo-22273
487 488