8000 gh-118201 - Disable the flaky POSIX test_confstr test on iOS (GH-118452) · python/cpython@9c468e2 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9c468e2

Browse files
authored
gh-118201 - Disable the flaky POSIX test_confstr test on iOS (GH-118452)
1 parent 7fabcc7 commit 9c468e2

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Lib/test/test_posix.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -564,6 +564,7 @@ def test_dup(self):
564564

565565
@unittest.skipUnless(hasattr(posix, 'confstr'),
566566
'test needs posix.confstr()')
567+
@unittest.skipIf(support.is_apple_mobile, "gh-118201: Test is flaky on iOS")
567568
def test_confstr(self):
568569
self.assertRaises(ValueError, posix.confstr, "CS_garbage")
569570
self.assertEqual(len(posix.confstr("CS_PATH")) > 0, True)

0 commit comments

Comments
 (0)
0