diff options
Diffstat (limited to 'scripts/test/asm2wasm.py')
-rwxr-xr-x | scripts/test/asm2wasm.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/test/asm2wasm.py b/scripts/test/asm2wasm.py index 63ed79ce6..fa38b9c3b 100755 --- a/scripts/test/asm2wasm.py +++ b/scripts/test/asm2wasm.py @@ -58,6 +58,8 @@ def test_asm2wasm(): cmd += ['--mem-init=a.mem'] if asm[0] == 'e': cmd += ['--mem-base=1024'] + if '4GB' in asm: + cmd += ['--mem-max=4294967296'] if 'i64' in asm or 'wasm-only' in asm or 'noffi' in asm: cmd += ['--wasm-only'] wasm = os.path.join(options.binaryen_test, wasm) |