summaryrefslogtreecommitdiff
path: root/test/wasm2c/spec/memory64/table.txt
diff options
context:
space:
mode:
authorKeith Winstein <208955+keithw@users.noreply.github.com>2024-10-30 20:00:59 -0700
committerGitHub <noreply@github.com>2024-10-30 20:00:59 -0700
commit6a5cbb94fad9b375469d6433429521988b1de20b (patch)
tree847c7b09e581bdeb5de8ed1fb014cd643b7b1d0e /test/wasm2c/spec/memory64/table.txt
parent9a7cf04d0fb9d4fbf0d943b7a7c5a761c014eb09 (diff)
downloadwabt-6a5cbb94fad9b375469d6433429521988b1de20b.tar.gz
wabt-6a5cbb94fad9b375469d6433429521988b1de20b.tar.bz2
wabt-6a5cbb94fad9b375469d6433429521988b1de20b.zip
Update testsuite (#2495)
The memory64 `table.wast` test has started to depend on function-references and gc (which WABT doesn't support yet), so vendor an older version of the test.
Diffstat (limited to 'test/wasm2c/spec/memory64/table.txt')
-rw-r--r--test/wasm2c/spec/memory64/table.txt78
1 files changed, 77 insertions, 1 deletions
diff --git a/test/wasm2c/spec/memory64/table.txt b/test/wasm2c/spec/memory64/table.txt
index a553dd52..190e16b1 100644
--- a/test/wasm2c/spec/memory64/table.txt
+++ b/test/wasm2c/spec/memory64/table.txt
@@ -1,6 +1,82 @@
;;; TOOL: run-spec-wasm2c
-;;; STDIN_FILE: third_party/testsuite/proposals/memory64/table.wast
;;; ARGS*: --enable-memory64
+;; memory64 table.wast from last commit before wasm-3.0 merge
+
+(module (table 0 funcref))
+(module (table 1 funcref))
+(module (table 0 0 funcref))
+(module (table 0 1 funcref))
+(module (table 1 256 funcref))
+(module (table 0 65536 funcref))
+(module (table 0 0xffff_ffff funcref))
+
+(module (table 0 funcref) (table 0 funcref))
+(module (table (import "spectest" "table") 0 funcref) (table 0 funcref))
+
+(assert_invalid
+ (module (table 1 0 funcref))
+ "size minimum must not be greater than maximum"
+)
+(assert_invalid
+ (module (table 0xffff_ffff 0 funcref))
+ "size minimum must not be greater than maximum"
+)
+
+(assert_invalid
+ (module quote "(table 0x1_0000_0000 funcref)")
+ "table size must be at most 2^32-1"
+)
+(assert_invalid
+ (module quote "(table 0x1_0000_0000 0x1_0000_0000 funcref)")
+ "table size must be at most 2^32-1"
+)
+(assert_invalid
+ (module quote "(table 0 0x1_0000_0000 funcref)")
+ "table size must be at most 2^32-1"
+)
+
+;; Same as above but with i64 index types
+
+(module (table i64 0 funcref))
+(module (table i64 1 funcref))
+(module (table i64 0 0 funcref))
+(module (table i64 0 1 funcref))
+(module (table i64 1 256 funcref))
+(module (table i64 0 65536 funcref))
+(module (table i64 0 0xffff_ffff funcref))
+
+(module (table i64 0 funcref) (table i64 0 funcref))
+(module (table (import "spectest" "table64") i64 0 funcref) (table i64 0 funcref))
+
+(assert_invalid
+ (module (table i64 1 0 funcref))
+ "size minimum must not be greater than maximum"
+)
+(assert_invalid
+ (module (table i64 0xffff_ffff 0 funcref))
+ "size minimum must not be greater than maximum"
+)
+
+;; Elem segments with no table
+
+(assert_invalid (module (elem (i32.const 0))) "unknown table")
+(assert_invalid (module (elem (i32.const 0) $f) (func $f)) "unknown table")
+
+;; Duplicate table identifiers
+
+(assert_malformed (module quote
+ "(table $foo 1 funcref)"
+ "(table $foo 1 funcref)")
+ "duplicate table")
+(assert_malformed (module quote
+ "(import \"\" \"\" (table $foo 1 funcref))"
+ "(table $foo 1 funcref)")
+ "duplicate table")
+(assert_malformed (module quote
+ "(import \"\" \"\" (table $foo 1 funcref))"
+ "(import \"\" \"\" (table $foo 1 funcref))")
+ "duplicate table")
+
(;; STDOUT ;;;
0/0 tests passed.
;;; STDOUT ;;)