diff options
Diffstat (limited to 'scripts/test')
-rw-r--r-- | scripts/test/wasm2js.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/test/wasm2js.py b/scripts/test/wasm2js.py index 8a1c99975..fec0d26db 100644 --- a/scripts/test/wasm2js.py +++ b/scripts/test/wasm2js.py @@ -56,6 +56,8 @@ def test_wasm2js_output(): cmd += ['-O'] if 'emscripten' in t: cmd += ['--emscripten'] + if 'deterministic' in t: + cmd += ['--deterministic'] out = support.run_command(cmd) all_out.append(out) @@ -156,6 +158,8 @@ def update_wasm2js_tests(): cmd += ['-O'] if 'emscripten' in wasm: cmd += ['--emscripten'] + if 'deterministic' in t: + cmd += ['--deterministic'] out = support.run_command(cmd) all_out.append(out) |