bpo-22273: Removed temporary test skipping on PPC platforms. (GH-16399)

This commit is contained in:
Vinay Sajip 2019-09-25 20:57:20 +01:00 committed by GitHub
parent bfd0c963d8
commit cc28ed2421
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -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