Skip to content

Commit 70b6eae

Browse files
authored
Disable tests checking the value of ENOENT on Windows (#8883)
See also #8882
1 parent 25399c8 commit 70b6eae

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/test_core.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4930,6 +4930,7 @@ def test_fs_64bit(self, js_engines=None):
49304930
src = open(path_from_root('tests', 'fs', 'test_64bit.c')).read()
49314931
self.do_run(src, 'success', force_c=True, js_engines=js_engines)
49324932

4933+
@no_windows('https://github.com/emscripten-core/emscripten/issues/8882')
49334934
def test_unistd_access(self):
49344935
self.clear()
49354936
orig_compiler_opts = self.emcc_args[:]
@@ -5025,6 +5026,7 @@ def test_unistd_login(self):
50255026
expected = open(path_from_root('tests', 'unistd', 'login.out')).read()
50265027
self.do_run(src, expected)
50275028

5029+
@no_windows('https://github.com/emscripten-core/emscripten/issues/8882')
50285030
def test_unistd_unlink(self):
50295031
self.clear()
50305032
orig_compiler_opts = self.emcc_args[:]
@@ -5089,6 +5091,7 @@ def test_unistd_io(self):
50895091
self.emcc_args = orig_compiler_opts + ['-D' + fs]
50905092
self.do_run(src, expected, js_engines=[NODE_JS])
50915093

5094+
@no_windows('https://github.com/emscripten-core/emscripten/issues/8882')
50925095
def test_unistd_misc(self):
50935096
orig_compiler_opts = self.emcc_args[:]
50945097
src = open(path_from_root('tests', 'unistd', 'misc.c')).read()

0 commit comments

Comments
 (0)