blob: 97b8280791f8410e2d76d4e61524860dc0525cda (
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
40
41
42
43
44
45
46
47
48
49
50
51
|
;;; TOOL: run-interp-spec
;;; ARGS*: --disable-reference-types
;;; STDIN_FILE: third_party/testsuite/table.wast
(;; STDOUT ;;;
out/test/spec/table.wast:11: assert_invalid passed:
error: only one table allowed
0000011: error: OnTable callback failed
out/test/spec/table.wast:12: assert_invalid passed:
error: only one table allowed
0000024: error: OnTable callback failed
out/test/spec/table.wast:14: assert_invalid passed:
0000000: error: table variable out of range: 0 (max 0)
000000c: error: BeginElemSegment callback failed
out/test/spec/table.wast:15: assert_invalid passed:
0000000: error: table variable out of range: 0 (max 0)
0000016: error: BeginElemSegment callback failed
out/test/spec/table.wast:19: assert_invalid passed:
error: max elems (0) must be >= initial elems (1)
000000f: error: OnTable callback failed
out/test/spec/table.wast:23: assert_invalid passed:
error: max elems (0) must be >= initial elems (4294967295)
0000013: error: OnTable callback failed
out/test/spec/table.wast:28: assert_malformed passed:
out/test/spec/table/table.13.wat:1:8: error: invalid int "0x1_0000_0000"
(table 0x1_0000_0000 funcref)
^^^^^^^^^^^^^
out/test/spec/table.wast:32: assert_malformed passed:
out/test/spec/table/table.14.wat:1:8: error: invalid int "0x1_0000_0000"
(table 0x1_0000_0000 0x1_0000_0000 funcref)
^^^^^^^^^^^^^
out/test/spec/table/table.14.wat:1:22: error: invalid int "0x1_0000_0000"
(table 0x1_0000_0000 0x1_0000_0000 funcref)
^^^^^^^^^^^^^
out/test/spec/table.wast:36: assert_malformed passed:
out/test/spec/table/table.15.wat:1:10: error: invalid int "0x1_0000_0000"
(table 0 0x1_0000_0000 funcref)
^^^^^^^^^^^^^
out/test/spec/table.wast:43: assert_malformed passed:
out/test/spec/table/table.16.wat:1:24: error: redefinition of table "$foo"
(table $foo 1 funcref)(table $foo 1 funcref)
^^^^^
out/test/spec/table.wast:47: assert_malformed passed:
out/test/spec/table/table.17.wat:1:39: error: redefinition of table "$foo"
(import "" "" (table $foo 1 funcref))(table $foo 1 funcref)
^^^^^
out/test/spec/table.wast:51: assert_malformed passed:
out/test/spec/table/table.18.wat:1:39: error: redefinition of table "$foo"
(import "" "" (table $foo 1 funcref))(import "" "" (table $foo 1 funcref))
^^^^^^
12/12 tests passed.
;;; STDOUT ;;)
|