mirror of
https://github.com/python/cpython.git
synced 2025-08-30 13:38:43 +00:00
Issue #8932: Skip required when compiled --without-threads.
This commit is contained in:
parent
17173cfe7b
commit
0ca4624e8a
1 changed files with 1 additions and 0 deletions
|
@ -36,6 +36,7 @@ class CAPITest(unittest.TestCase):
|
|||
self.assertEqual(testfunction.attribute, "test")
|
||||
self.assertRaises(AttributeError, setattr, inst.testfunction, "attribute", "test")
|
||||
|
||||
@unittest.skipUnless(threading, 'Threading required for this test.')
|
||||
def test_no_FatalError_infinite_loop(self):
|
||||
p = subprocess.Popen([sys.executable, "-c",
|
||||
'import _testcapi;'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue