mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
bpo-22273: Disabled tests while investigating buildbot failures on ARM7L/PPC64. (GH-16377)
This commit is contained in:
parent
f163aeaa8c
commit
57dc7d5ae8
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,4 @@
|
|||
import platform
|
||||
import unittest
|
||||
from ctypes import *
|
||||
from ctypes.test import need_symbol
|
||||
|
@ -5,6 +6,8 @@ from struct import calcsize
|
|||
import _ctypes_test
|
||||
from test import support
|
||||
|
||||
MACHINE = platform.machine()
|
||||
|
||||
class SubclassesTest(unittest.TestCase):
|
||||
def test_subclass(self):
|
||||
class X(Structure):
|
||||
|
@ -477,6 +480,8 @@ class StructureTestCase(unittest.TestCase):
|
|||
self.assertEqual(s.first, got.first)
|
||||
self.assertEqual(s.second, got.second)
|
||||
|
||||
@unittest.skipIf(MACHINE in ('armv7l', 'ppc64'),
|
||||
'Test temporarily disabled on this architecture')
|
||||
def test_array_in_struct(self):
|
||||
# See bpo-22273
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue