Skip to content

Commit

Permalink
Disable test_fs_open_no_permissions under nodefs on Windows (#23238)
Browse files Browse the repository at this point in the history
  • Loading branch information
dschuff authored Dec 19, 2024
1 parent 82491a8 commit e1be139
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -5866,7 +5866,10 @@ def test_fs_readdir_ino_matches_stat_ino(self):
self.do_runf('fs/test_fs_readdir_ino_matches_stat_ino.c', 'success')

@also_with_nodefs_both
@crossplatform
def test_fs_open_no_permissions(self):
if ('-DNODEFS' in self.emcc_args or '-DNODERAWFS' in self.emcc_args) and WINDOWS:
self.skipTest('fs_open_no_permissions fails on windows')
self.do_runf('fs/test_fs_open_no_permissions.c', 'success')

@also_with_nodefs_both
Expand Down

0 comments on commit e1be139

Please sign in to comment.