Skip to content

Commit 598004b

Browse files
committed
gh-127572: Temporarily skip failing test on s390x
1 parent 8ba9f5b commit 598004b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Lib/test/test_capi/test_structmembers.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import unittest
2-
from test.support import import_helper
2+
from test.support import import_helper, skip_on_s390x
33

44
# Skip this test if the _testcapi module isn't available.
55
import_helper.import_module('_testcapi')
@@ -165,6 +165,7 @@ def test_inplace_string(self):
165165
self.assertRaises(TypeError, setattr, ts, "T_STRING_INPLACE", "s")
166166
self.assertRaises(TypeError, delattr, ts, "T_STRING_INPLACE")
167167

168+
@skip_on_s390x # gh-127572: test fails on s390x
168169
def test_char(self):
169170
ts = self.ts
170171
self.assertEqual(ts.T_CHAR, "c")

0 commit comments

Comments
 (0)