Skip to content

Commit e1be139

Browse files
authored
Disable test_fs_open_no_permissions under nodefs on Windows (#23238)
1 parent 82491a8 commit e1be139

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/test_core.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5866,7 +5866,10 @@ def test_fs_readdir_ino_matches_stat_ino(self):
58665866
self.do_runf('fs/test_fs_readdir_ino_matches_stat_ino.c', 'success')
58675867

58685868
@also_with_nodefs_both
5869+
@crossplatform
58695870
def test_fs_open_no_permissions(self):
5871+
if ('-DNODEFS' in self.emcc_args or '-DNODERAWFS' in self.emcc_args) and WINDOWS:
5872+
self.skipTest('fs_open_no_permissions fails on windows')
58705873
self.do_runf('fs/test_fs_open_no_permissions.c', 'success')
58715874

58725875
@also_with_nodefs_both

0 commit comments

Comments
 (0)