Skip to content

Commit cc28ed2

Browse files
authored
bpo-22273: Removed temporary test skipping on PPC platforms. (GH-16399)
1 parent bfd0c96 commit cc28ed2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Lib/ctypes/test/test_structures.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
import _ctypes_test
77
from test import support
88

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.
912
MACHINE = platform.machine()
1013

1114
class SubclassesTest(unittest.TestCase):
@@ -480,8 +483,6 @@ class X(Structure):
480483
self.assertEqual(s.first, got.first)
481484
self.assertEqual(s.second, got.second)
482485

483-
@unittest.skipIf(MACHINE.startswith('ppc'),
484-
'Test temporarily disabled on this architecture')
485486
def test_array_in_struct(self):
486487
# See bpo-22273
487488

0 commit comments

Comments
 (0)