Skip to content

Commit 40e3dbc

Browse files
authored
[WasmFS] Disable other.test_unlink on Windows (#16464)
The test was written to expose some unspecified, niche behavior in Linux's file system implementation, so it's not surprising that it fails on Windows. Disable the test on Windows for now until we can investigate the differences and adapt the test accordingly.
1 parent a7b10da commit 40e3dbc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/test_other.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -4117,7 +4117,8 @@ def test_init_file_at_offset(self):
41174117
self.run_process([EMXX, 'src.cpp'])
41184118
self.assertContained('read: 0\nfile size is 104\n', self.run_js('a.out.js'))
41194119

4120-
@no_mac("TODO: investigate different FS semantics on Mac")
4120+
@no_mac("TODO: investigate different Node FS semantics on Mac")
4121+
@no_windows("TODO: investigate different Node FS semantics on Windows")
41214122
@also_with_wasmfs_all_backends
41224123
def test_unlink(self):
41234124
self.do_other_test('test_unlink.cpp')

0 commit comments

Comments
 (0)