mirror of https://github.com/python/cpython
gh-118201 - Disable the flaky POSIX test_confstr test on iOS (GH-118452)
This commit is contained in:
parent
7fabcc727d
commit
9c468e2c5d
|
@ -564,6 +564,7 @@ class PosixTester(unittest.TestCase):
|
|||
|
||||
@unittest.skipUnless(hasattr(posix, 'confstr'),
|
||||
'test needs posix.confstr()')
|
||||
@unittest.skipIf(support.is_apple_mobile, "gh-118201: Test is flaky on iOS")
|
||||
def test_confstr(self):
|
||||
self.assertRaises(ValueError, posix.confstr, "CS_garbage")
|
||||
self.assertEqual(len(posix.confstr("CS_PATH")) > 0, True)
|
||||
|
|
Loading…
Reference in New Issue