File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -349,16 +349,18 @@ def python_open(self, path):
349
349
fp = open (path , 'w' )
350
350
fp .close ()
351
351
352
+ @unittest .skipIf (sys .platform == "darwin" ,
353
+ "hangs under macOS; see bpo-25234, bpo-35363" )
352
354
def test_open (self ):
353
355
self ._test_open ("fp = open(path, 'r')\n fp.close()" ,
354
356
self .python_open )
355
357
356
- @unittest .skipIf (sys .platform == 'darwin' , "hangs under OS X; see issue #25234" )
357
358
def os_open (self , path ):
358
359
fd = os .open (path , os .O_WRONLY )
359
360
os .close (fd )
360
361
361
- @unittest .skipIf (sys .platform == "darwin" , "hangs under OS X; see issue #25234" )
362
+ @unittest .skipIf (sys .platform == "darwin" ,
363
+ "hangs under macOS; see bpo-25234, bpo-35363" )
362
364
def test_os_open (self ):
363
365
self ._test_open ("fd = os.open(path, os.O_RDONLY)\n os.close(fd)" ,
364
366
self .os_open )
You can’t perform that action at this time.
0 commit comments