blob: a1221108ee65cedbc6fb3133c901d307b30a5c19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
;;; TOOL: run-interp-spec
;;; STDIN_FILE: third_party/testsuite/proposals/exception-handling/legacy/try_catch.wast
;;; ARGS*: --enable-exceptions --enable-tail-call
(;; STDOUT ;;;
out/test/spec/exception-handling/legacy/try_catch.wast:185: assert_trap passed: unreachable executed
out/test/spec/exception-handling/legacy/try_catch.wast:188: assert_trap passed: integer divide by zero
out/test/spec/exception-handling/legacy/try_catch.wast:192: assert_exception passed
out/test/spec/exception-handling/legacy/try_catch.wast:196: assert_exception passed
out/test/spec/exception-handling/legacy/try_catch.wast:219: assert_exception passed
out/test/spec/exception-handling/legacy/try_catch.wast:220: assert_exception passed
out/test/spec/exception-handling/legacy/try_catch.wast:248: assert_malformed passed:
out/test/spec/exception-handling/legacy/try_catch/try_catch.3.wat:1:16: error: unexpected token "catch_all", expected an instr.
(module (func (catch_all)))
^^^^^^^^^
out/test/spec/exception-handling/legacy/try_catch.wast:253: assert_malformed passed:
out/test/spec/exception-handling/legacy/try_catch/try_catch.4.wat:1:25: error: unexpected token "catch", expected an instr.
(module (tag $e) (func (catch $e)))
^^^^^
out/test/spec/exception-handling/legacy/try_catch.wast:258: assert_malformed passed:
out/test/spec/exception-handling/legacy/try_catch/try_catch.5.wat:1:38: error: multiple catch_all clauses not allowed
(module (func (try (do) (catch_all) (catch_all))))
^^^^^^^^^
out/test/spec/exception-handling/legacy/try_catch.wast:264: assert_invalid passed:
out/test/spec/exception-handling/legacy/try_catch/try_catch.6.wasm:000001b: error: type mismatch in try, expected [i32] but got []
000001b: error: OnEndExpr callback failed
out/test/spec/exception-handling/legacy/try_catch.wast:266: assert_invalid passed:
out/test/spec/exception-handling/legacy/try_catch/try_catch.7.wasm:000001d: error: type mismatch in try, expected [i32] but got [i64]
000001d: error: OnEndExpr callback failed
out/test/spec/exception-handling/legacy/try_catch.wast:268: assert_invalid passed:
out/test/spec/exception-handling/legacy/try_catch/try_catch.8.wasm:0000023: error: type mismatch at end of try catch, expected [] but got [i32]
0000023: error: OnEndExpr callback failed
out/test/spec/exception-handling/legacy/try_catch.wast:270: assert_invalid passed:
out/test/spec/exception-handling/legacy/try_catch/try_catch.9.wasm:0000028: error: type mismatch in try catch, expected [i32] but got [i64]
0000028: error: OnEndExpr callback failed
out/test/spec/exception-handling/legacy/try_catch.wast:275: assert_invalid passed:
out/test/spec/exception-handling/legacy/try_catch/try_catch.10.wasm:000001d: error: type mismatch at end of try catch, expected [] but got [i32]
000001d: error: OnEndExpr callback failed
42/42 tests passed.
;;; STDOUT ;;)
|