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):
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