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 a5f7b1c commit c881fdeCopy full SHA for c881fde
test/test_core.py
@@ -6940,6 +6940,12 @@ def test_autodebug_wasm(self):
6940
'none': ('none',),
6941
})
6942
def test_wasm2c_sandboxing(self, mode):
6943
+ if self.get_setting('WASMFS'):
6944
+ # wasm2c disables JS legalization since we are building in standalone
6945
+ # mode. this happens to work without wasmfs, but with wasmfs we get the
6946
+ # time when we create/update a file, which uses clock_time_get that has an
6947
+ # i64 param. For such an import to work we need wasm-bigint support.
6948
+ self.node_args.append('--experimental-wasm-bigint')
6949
if not can_do_standalone(self):
6950
return self.skipTest('standalone mode not supported')
6951
self.set_setting('STANDALONE_WASM')
0 commit comments