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

Vinay Sajip webhook-mailer at python.org
Wed Sep 25 15:57:27 EDT 2019


https://github.com/python/cpython/commit/cc28ed2421bf3953efc0fbde387f28722f3801e2
commit: cc28ed2421bf3953efc0fbde387f28722f3801e2
branch: master
author: Vinay Sajip <vinay_sajip at yahoo.co.uk>
committer: GitHub <noreply at github.com>
date: 2019-09-25T20:57:20+01:00
summary:

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

files:
M Lib/ctypes/test/test_structures.py

diff --git a/Lib/ctypes/test/test_structures.py b/Lib/ctypes/test/test_structures.py
index fedcae24dfd3..0c01c799042c 100644
--- a/Lib/ctypes/test/test_structures.py
+++ b/Lib/ctypes/test/test_structures.py
@@ -6,6 +6,9 @@
 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 X(Structure):
         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
 



More information about the Python-checkins mailing list