Skip to content

Commit ca8610a

Browse files
committed
disable test_fs_writeFile in non-emcc modes
1 parent 42357af commit ca8610a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/test_core.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -4260,7 +4260,8 @@ def test_fs_trackingdelegate(self):
42604260
self.do_run_from_file(src, out)
42614261

42624262
def test_fs_writeFile(self):
4263-
self.emcc_args += ['-s', 'DISABLE_EXCEPTION_CATCHING=1']
4263+
if self.emcc_args is None: return self.skip('requires emcc')
4264+
self.emcc_args += ['-s', 'DISABLE_EXCEPTION_CATCHING=1'] # see issue 2334
42644265
src = path_from_root('tests', 'fs', 'test_writeFile.cc')
42654266
out = path_from_root('tests', 'fs', 'test_writeFile.out')
42664267
self.do_run_from_file(src, out)

0 commit comments

Comments
 (0)