Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions test/test_other.py
Original file line number Diff line number Diff line change
Expand Up @@ -13685,14 +13685,14 @@ def test_fs_icase(self):
@crossplatform
@with_all_fs
def test_std_filesystem(self):
if (WINDOWS or MACOS) and self.get_setting('NODERAWFS'):
self.skipTest('Rawfs directory removal works only on Linux')
if self.get_setting('NODERAWFS') and self.get_setting('WASMFS'):
self.skipTest('NODERAWFS + WASMFS is does not allow access to arbitrary paths')
self.do_other_test('test_std_filesystem.cpp')

@crossplatform
@with_all_fs
def test_std_filesystem_tempdir(self):
if (WINDOWS or MACOS) and self.get_setting('NODERAWFS') and self.get_setting('WASMFS'):
if self.get_setting('NODERAWFS') and self.get_setting('WASMFS'):
self.skipTest('NODERAWFS + WASMFS is does not allow access to arbitrary paths')
self.do_other_test('test_std_filesystem_tempdir.cpp', cflags=['-g'])

Expand Down