diff options
author | Thomas Lively <tlively@google.com> | 2024-02-08 15:27:02 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-08 15:27:02 -0800 |
commit | f5d8d30171e53c225fc640e6db8aa42973c8804c (patch) | |
tree | 69744aa9a9a79252234a869531ec3954d0dad5b5 /test/lit/passes/asyncify.wast | |
parent | e7b34702570110e7f5f0b2cd23bd768d900beb2b (diff) | |
download | binaryen-f5d8d30171e53c225fc640e6db8aa42973c8804c.tar.gz binaryen-f5d8d30171e53c225fc640e6db8aa42973c8804c.tar.bz2 binaryen-f5d8d30171e53c225fc640e6db8aa42973c8804c.zip |
Update lit tests to parse with the new parser (#6290)
Get as many of the lit tests as possible to parse with the new parser, mostly by
moving declared module items to be after imports. Also fix a bug in the new
parser's pop validation to allow supertypes of the expected type.
The two big issues that still prevent some lit tests from working correctly
under the new parser are missing support for symbolic field names and missing
support for source map annotations.
Diffstat (limited to 'test/lit/passes/asyncify.wast')
-rw-r--r-- | test/lit/passes/asyncify.wast | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/lit/passes/asyncify.wast b/test/lit/passes/asyncify.wast index 968cc5716..71043f2e8 100644 --- a/test/lit/passes/asyncify.wast +++ b/test/lit/passes/asyncify.wast @@ -6,7 +6,6 @@ (module ;; CHECK: (type $f (func (param i32))) (type $f (func (param i32))) - (memory 1 2) ;; CHECK: (type $1 (func (param i32 i32))) ;; CHECK: (type $2 (func)) @@ -17,15 +16,16 @@ (import "env" "import" (func $import)) ;; CHECK: (import "env" "import2" (func $import2 (param i32))) (import "env" "import2" (func $import2 (param i32))) - (table funcref (elem $liveness2 $liveness2)) + ;; CHECK: (global $__asyncify_state (mut i32) (i32.const 0)) ;; CHECK: (global $__asyncify_data (mut i32) (i32.const 0)) - ;; CHECK: (memory $0 1 2) - - ;; CHECK: (table $0 2 2 funcref) + ;; CHECK: (memory $m 1 2) + (memory $m 1 2) + ;; CHECK: (table $t 2 2 funcref) + (table $t funcref (elem $liveness2 $liveness2)) ;; CHECK: (elem $0 (i32.const 0) $liveness2 $liveness2) ;; CHECK: (export "asyncify_start_unwind" (func $asyncify_start_unwind)) |