Skip to content

Commit dae5979

Browse files
committed
[3.12] pythongh-118201 - Disable the flaky POSIX test_confstr test on iOS (pythonGH-118452)
1 parent 13f9cde commit dae5979

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
@@ -568,6 +568,7 @@ def test_dup(self):
568568

569569
@unittest.skipUnless(hasattr(posix, 'confstr'),
570570
'test needs posix.confstr()')
571+
@unittest.skipIf(support.is_apple_mobile, "gh-118201: Test is flaky on iOS")
571572
def test_confstr(self):
572573
self.assertRaises(ValueError, posix.confstr, "CS_garbage")
573574
self.assertEqual(len(posix.confstr("CS_PATH")) > 0, True)

0 commit comments

Comments
 (0)