diff options
author | Ng Zhi An <ngzhian@gmail.com> | 2021-03-04 16:26:21 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-04 16:26:21 -0800 |
commit | 9be10643b12554bc4f9c75017463220d28bca609 (patch) | |
tree | c3d2c1cae685df69ac1164e9e4a4454d7e6c6db0 /test/spec-wasm2c-prefix.c | |
parent | f5d520d1cefd5a5add8c93e4e135d443817d0357 (diff) | |
download | wabt-9be10643b12554bc4f9c75017463220d28bca609.tar.gz wabt-9be10643b12554bc4f9c75017463220d28bca609.tar.bz2 wabt-9be10643b12554bc4f9c75017463220d28bca609.zip |
Bump third_party/testsuite to TOT (#1623)
* Bump third_party/testsuite
* Run test/update-spec-tests.py
* Skip new simd tests that are not implemented
* Rebase some tests in test/spec based on latest update to testsuite
* Define global_i64 for wasm2c global tests
* Skip more simd tests due to updated/new instructions
Diffstat (limited to 'test/spec-wasm2c-prefix.c')
-rw-r--r-- | test/spec-wasm2c-prefix.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/spec-wasm2c-prefix.c b/test/spec-wasm2c-prefix.c index 897872b4..f28339e1 100644 --- a/test/spec-wasm2c-prefix.c +++ b/test/spec-wasm2c-prefix.c @@ -202,6 +202,7 @@ static void spectest_print_f64_f64(double d1, double d2) { static wasm_rt_table_t spectest_table; static wasm_rt_memory_t spectest_memory; static uint32_t spectest_global_i32 = 666; +static uint64_t spectest_global_i64 = 666l; void (*Z_spectestZ_printZ_vv)(void) = &spectest_print; void (*Z_spectestZ_print_i32Z_vi)(uint32_t) = &spectest_print_i32; @@ -214,6 +215,7 @@ void (*Z_spectestZ_print_f64_f64Z_vdd)(double, wasm_rt_table_t* Z_spectestZ_table = &spectest_table; wasm_rt_memory_t* Z_spectestZ_memory = &spectest_memory; uint32_t* Z_spectestZ_global_i32Z_i = &spectest_global_i32; +uint64_t* Z_spectestZ_global_i64Z_j = &spectest_global_i64; static void init_spectest_module(void) { wasm_rt_allocate_memory(&spectest_memory, 1, 2); |