From 9be10643b12554bc4f9c75017463220d28bca609 Mon Sep 17 00:00:00 2001 From: Ng Zhi An Date: Thu, 4 Mar 2021 16:26:21 -0800 Subject: 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 --- test/spec-wasm2c-prefix.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test/spec-wasm2c-prefix.c') 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); -- cgit v1.2.3