Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Commit

Permalink
Merge fixups
Browse files Browse the repository at this point in the history
  • Loading branch information
rossberg committed Apr 2, 2020
1 parent 30002e7 commit 9f6a39f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/core/binary.wast
Original file line number Diff line number Diff line change
Expand Up @@ -1077,7 +1077,7 @@
;; function 0
"\02\00"
"\0b") ;; end
"invalid reference type")
"malformed reference type")

;; passive element segment containing opcode ref.func
(module binary
Expand Down
4 changes: 2 additions & 2 deletions test/core/table.wast
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
(module (table 0 65536 funcref))
(module (table 0 0xffff_ffff funcref))

(assert_invalid (module (table 0 funcref) (table 0 funcref)) "multiple tables")
(assert_invalid (module (table (import "spectest" "table") 0 funcref) (table 0 funcref)) "multiple tables")
(module (table 0 funcref) (table 0 funcref))
(module (table (import "spectest" "table") 0 funcref) (table 0 funcref))

(assert_invalid (module (elem (i32.const 0))) "unknown table")
(assert_invalid (module (elem (i32.const 0) $f) (func $f)) "unknown table")
Expand Down

0 comments on commit 9f6a39f

Please sign in to comment.