diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2019-09-25 19:57:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-25 19:57:20 (GMT) |
commit | cc28ed2421bf3953efc0fbde387f28722f3801e2 (patch) | |
tree | 40f9d9d02b68430bc4fc6b20d6ec37e7ef51a178 | |
parent | bfd0c963d88f3df69489ee250655e2b8f3d235bd (diff) | |
download | cpython-cc28ed2421bf3953efc0fbde387f28722f3801e2.zip cpython-cc28ed2421bf3953efc0fbde387f28722f3801e2.tar.gz cpython-cc28ed2421bf3953efc0fbde387f28722f3801e2.tar.bz2 |
bpo-22273: Removed temporary test skipping on PPC platforms. (GH-16399)
-rw-r--r-- | Lib/ctypes/test/test_structures.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/ctypes/test/test_structures.py b/Lib/ctypes/test/test_structures.py index fedcae2..0c01c79 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 |