summaryrefslogtreecommitdiff
path: root/test/spec/table_get.wast
diff options
context:
space:
mode:
Diffstat (limited to 'test/spec/table_get.wast')
-rw-r--r--test/spec/table_get.wast25
1 files changed, 20 insertions, 5 deletions
diff --git a/test/spec/table_get.wast b/test/spec/table_get.wast
index de5f6622a..cc24ba3ec 100644
--- a/test/spec/table_get.wast
+++ b/test/spec/table_get.wast
@@ -1,30 +1,45 @@
(module
(table $t2 2 externref)
(table $t3 3 funcref)
+ (table $t64 i64 3 funcref)
(elem (table $t3) (i32.const 1) func $dummy)
(func $dummy)
+ (func (export "init")
+ ;; (table.set $t2 (i32.const 1) (local.get $r))
+ (table.set $t3 (i32.const 2) (table.get $t3 (i32.const 1)))
+ )
+
(func (export "get-externref") (param $i i32) (result externref)
- (table.get $t2 (local.get $i))
+ (table.get (local.get $i))
)
(func $f3 (export "get-funcref") (param $i i32) (result funcref)
(table.get $t3 (local.get $i))
)
+ (func $f4 (export "get-funcref-t64") (param $i i64) (result funcref)
+ (table.get $t64 (local.get $i))
+ )
(func (export "is_null-funcref") (param $i i32) (result i32)
(ref.is_null (call $f3 (local.get $i)))
)
)
+;; (invoke "init" (ref.extern 1))
+(invoke "init")
+
(assert_return (invoke "get-externref" (i32.const 0)) (ref.null extern))
+;; (assert_return (invoke "get-externref" (i32.const 1)) (ref.extern 1))
(assert_return (invoke "get-funcref" (i32.const 0)) (ref.null func))
+(assert_return (invoke "get-funcref-t64" (i64.const 0)) (ref.null func))
(assert_return (invoke "is_null-funcref" (i32.const 1)) (i32.const 0))
+(assert_return (invoke "is_null-funcref" (i32.const 2)) (i32.const 0))
-(assert_trap (invoke "get-externref" (i32.const 2)) "out of bounds")
-(assert_trap (invoke "get-funcref" (i32.const 3)) "out of bounds")
-(assert_trap (invoke "get-externref" (i32.const -1)) "out of bounds")
-(assert_trap (invoke "get-funcref" (i32.const -1)) "out of bounds")
+(assert_trap (invoke "get-externref" (i32.const 2)) "out of bounds table access")
+(assert_trap (invoke "get-funcref" (i32.const 3)) "out of bounds table access")
+(assert_trap (invoke "get-externref" (i32.const -1)) "out of bounds table access")
+(assert_trap (invoke "get-funcref" (i32.const -1)) "out of bounds table access")
;; Type errors