We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c44f413 commit 46f1a9eCopy full SHA for 46f1a9e
test/test_core.py
@@ -5757,8 +5757,13 @@ def test_fs_writeFile(self):
5757
self.do_run_in_out_file_test('fs/test_writeFile.cpp')
5758
5759
@with_all_fs
5760
+ @crossplatform
5761
def test_fs_js_api(self):
- self.set_setting("FORCE_FILESYSTEM")
5762
+ nodefs = '-DNODEFS' in self.emcc_args or '-DNODERAWFS' in self.emcc_args
5763
+ if nodefs and WINDOWS:
5764
+ self.skipTest('specific errno values differ')
5765
+ if self.get_setting('WASMFS'):
5766
+ self.set_setting("FORCE_FILESYSTEM")
5767
self.do_runf('fs/test_fs_js_api.c', 'success')
5768
5769
@also_with_noderawfs
0 commit comments