Skip to content
This repository was archived by the owner on Apr 25, 2025. It is now read-only.

Commit 76419ef

Browse files
takikawaMs2ger
authored andcommitted
Fix merge issue in tests
These tests don't have any exception handling contents, so they should be identical to upstream spec tests.
1 parent 58b3ed9 commit 76419ef

File tree

2 files changed

+1
-15
lines changed

2 files changed

+1
-15
lines changed

test/core/br_table.wast

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1601,20 +1601,6 @@
16011601
)
16021602

16031603

1604-
(assert_invalid
1605-
(module (func $meet-bottom (param i32) (result externref)
1606-
(block $l1 (result externref)
1607-
(drop
1608-
(block $l2 (result i32)
1609-
(br_table $l2 $l1 $l2 (ref.null extern) (local.get 0))
1610-
)
1611-
)
1612-
(ref.null extern)
1613-
)
1614-
))
1615-
"type mismatch"
1616-
)
1617-
16181604
(assert_invalid
16191605
(module (func $unbound-label
16201606
(block (br_table 2 1 (i32.const 1)))

test/core/select.wast

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@
272272
(assert_return (invoke "as-br_table-last" (i32.const 1)) (i32.const 2))
273273

274274
(assert_return (invoke "as-call_indirect-first" (i32.const 0)) (i32.const 3))
275-
;;(assert_return (invoke "as-call_indirect-first" (i32.const 1)) (i32.const 2))
275+
(assert_return (invoke "as-call_indirect-first" (i32.const 1)) (i32.const 2))
276276
(assert_return (invoke "as-call_indirect-mid" (i32.const 0)) (i32.const 1))
277277
(assert_return (invoke "as-call_indirect-mid" (i32.const 1)) (i32.const 1))
278278
(assert_trap (invoke "as-call_indirect-last" (i32.const 0)) "undefined element")

0 commit comments

Comments
 (0)