diff options
author | Wouter van Oortmerssen <aardappel@gmail.com> | 2020-10-26 15:46:16 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-26 15:46:16 -0700 |
commit | 8e42376ccd5f05dc1036f91b4262e67b0fc66c2d (patch) | |
tree | 8d20862bff763460a5632d9a705ffb0f77a8d4cd /test/interp | |
parent | 30af7afe3c27fd2957036eb09453f74ecc75ac67 (diff) | |
download | wabt-8e42376ccd5f05dc1036f91b4262e67b0fc66c2d.tar.gz wabt-8e42376ccd5f05dc1036f91b4262e67b0fc66c2d.tar.bz2 wabt-8e42376ccd5f05dc1036f91b4262e67b0fc66c2d.zip |
Changes required to make the new Memory64 spec tests run (#1560)
These uncovered some things the previous tests didn't!
Also required the switching of the location of the index as discussed in https://github.com/WebAssembly/memory64/issues/5
Also one small .py change that ensures the new tests have consistent posix paths.
Diffstat (limited to 'test/interp')
-rw-r--r-- | test/interp/load64.txt | 2 | ||||
-rw-r--r-- | test/interp/store64.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/interp/load64.txt b/test/interp/load64.txt index 95b42572..387edb81 100644 --- a/test/interp/load64.txt +++ b/test/interp/load64.txt @@ -1,7 +1,7 @@ ;;; TOOL: run-interp ;;; ARGS: --enable-memory64 (module - (memory 1 i64) + (memory i64 1) (data (i32.const 0) "\ff\ff\ff\ff") (data (i32.const 4) "\00\00\ce\41") (data (i32.const 8) "\00\00\00\00\00\ff\8f\40") diff --git a/test/interp/store64.txt b/test/interp/store64.txt index dec6a7f9..d53484ee 100644 --- a/test/interp/store64.txt +++ b/test/interp/store64.txt @@ -1,7 +1,7 @@ ;;; TOOL: run-interp ;;; ARGS: --enable-memory64 (module - (memory 1 i64) + (memory i64 1) (func (export "i32_store8") (result i32) i64.const 0 |