We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfd0c96 commit cc28ed2Copy full SHA for cc28ed2
Lib/ctypes/test/test_structures.py
@@ -6,6 +6,9 @@
6
import _ctypes_test
7
from test import support
8
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.
12
MACHINE = platform.machine()
13
14
class SubclassesTest(unittest.TestCase):
@@ -480,8 +483,6 @@ class X(Structure):
480
483
self.assertEqual(s.first, got.first)
481
484
self.assertEqual(s.second, got.second)
482
485
- @unittest.skipIf(MACHINE.startswith('ppc'),
- 'Test temporarily disabled on this architecture')
486
def test_array_in_struct(self):
487
# See bpo-22273
488
0 commit comments