@@ -181,6 +181,9 @@ def test_access(self):
181
181
os .close (f )
182
182
self .assertTrue (os .access (os_helper .TESTFN , os .W_OK ))
183
183
184
+ @unittest .skipIf (
185
+ support .is_emscripten , "Test is unstable under Emscripten."
186
+ )
184
187
def test_closerange (self ):
185
188
first = os .open (os_helper .TESTFN , os .O_CREAT | os .O_RDWR )
186
189
# We must allocate two consecutive file descriptors, otherwise
@@ -1578,6 +1581,7 @@ def test_makedir(self):
1578
1581
'dir5' , 'dir6' )
1579
1582
os .makedirs (path )
1580
1583
1584
+ @unittest .skipIf (support .is_emscripten , "Emscripten's umask is a stub." )
1581
1585
def test_mode (self ):
1582
1586
with os_helper .temp_umask (0o002 ):
1583
1587
base = os_helper .TESTFN
@@ -2158,6 +2162,9 @@ def test_fchown(self):
2158
2162
self .check (os .fchown , - 1 , - 1 )
2159
2163
2160
2164
@unittest .skipUnless (hasattr (os , 'fpathconf' ), 'test needs os.fpathconf()' )
2165
+ @unittest .skipIf (
2166
+ support .is_emscripten , "musl libc issue on Emscripten, bpo-46390"
2167
+ )
2161
2168
def test_fpathconf (self ):
2162
2169
self .check (os .pathconf , "PC_NAME_MAX" )
2163
2170
self .check (os .fpathconf , "PC_NAME_MAX" )
@@ -4058,6 +4065,7 @@ def test_path_t_converter_and_custom_class(self):
4058
4065
4059
4066
@unittest .skipUnless (hasattr (os , 'get_blocking' ),
4060
4067
'needs os.get_blocking() and os.set_blocking()' )
4068
+ @unittest .skipIf (support .is_emscripten , "Cannot unset blocking flag" )
4061
4069
class BlockingTests (unittest .TestCase ):
4062
4070
def test_blocking (self ):
4063
4071
fd = os .open (__file__ , os .O_RDONLY )
@@ -4513,7 +4521,7 @@ def test_times(self):
4513
4521
self .assertEqual (times .elapsed , 0 )
4514
4522
4515
4523
4516
- @requires_os_func ( 'fork' )
4524
+ @support . requires_fork ( )
4517
4525
class ForkTests (unittest .TestCase ):
4518
4526
def test_fork (self ):
4519
4527
# bpo-42540: ensure os.fork() with non-default memory allocator does
0 commit comments