]> granicus.if.org Git - python/commitdiff
bpo-22273: Removed temporary test skipping on PPC platforms. (GH-16399)
authorVinay Sajip <vinay_sajip@yahoo.co.uk>
Wed, 25 Sep 2019 19:57:20 +0000 (20:57 +0100)
committerGitHub <noreply@github.com>
Wed, 25 Sep 2019 19:57:20 +0000 (20:57 +0100)
Lib/ctypes/test/test_structures.py

index fedcae24dfd3a28d73851b0c7cbd2b60c6eb3fa1..0c01c799042cc52d03f396b433c390a2c95c668e 100644 (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