We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42357af commit ca8610aCopy full SHA for ca8610a
tests/test_core.py
@@ -4260,7 +4260,8 @@ def test_fs_trackingdelegate(self):
4260
self.do_run_from_file(src, out)
4261
4262
def test_fs_writeFile(self):
4263
- self.emcc_args += ['-s', 'DISABLE_EXCEPTION_CATCHING=1']
+ if self.emcc_args is None: return self.skip('requires emcc')
4264
+ self.emcc_args += ['-s', 'DISABLE_EXCEPTION_CATCHING=1'] # see issue 2334
4265
src = path_from_root('tests', 'fs', 'test_writeFile.cc')
4266
out = path_from_root('tests', 'fs', 'test_writeFile.out')
4267
0 commit comments