File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -547,13 +547,14 @@ def test_optim_args_from_interpreter_flags(self):
547
547
with self .subTest (opts = opts ):
548
548
self .check_options (opts , 'optim_args_from_interpreter_flags' )
549
549
550
+ @unittest .skipIf (support .is_apple_mobile , "Unstable on Apple Mobile" )
550
551
@unittest .skipIf (support .is_emscripten , "Unstable in Emscripten" )
551
552
@unittest .skipIf (support .is_wasi , "Unavailable on WASI" )
552
553
def test_fd_count (self ):
553
- # We cannot test the absolute value of fd_count(): on old Linux
554
- # kernel or glibc versions, os.urandom() keeps a FD open on
555
- # /dev/urandom device and Python has 4 FD opens instead of 3.
556
- # Test is unstable on Emscripten. The platform starts and stops
554
+ # We cannot test the absolute value of fd_count(): on old Linux kernel
555
+ # or glibc versions, os.urandom() keeps a FD open on /dev/urandom
556
+ # device and Python has 4 FD opens instead of 3. Test is unstable on
557
+ # Emscripten and Apple Mobile platforms; these platforms start and stop
557
558
# background threads that use pipes and epoll fds.
558
559
start = os_helper .fd_count ()
559
560
fd = os .open (__file__ , os .O_RDONLY )
You can’t perform that action at this time.
0 commit comments