summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/lit/passes/asyncify_verbose.wast (renamed from test/lit/passes/asyncify_verbost.wast)7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/lit/passes/asyncify_verbost.wast b/test/lit/passes/asyncify_verbose.wast
index 3bc4901b0..3f8f8668b 100644
--- a/test/lit/passes/asyncify_verbost.wast
+++ b/test/lit/passes/asyncify_verbose.wast
@@ -11,7 +11,9 @@
;; Likewise, further up the call chain as well.
;;
;; CHECK: [asyncify] calls-calls-import can change the state due to calls-import
+;; CHECK: [asyncify] calls-calls-import-b can change the state due to calls-import
;; CHECK: [asyncify] calls-calls-calls-import can change the state due to calls-calls-import
+;; CHECK: [asyncify] calls-calls-calls-import can change the state due to calls-calls-import-b
(module
(import "env" "import" (func $import))
@@ -26,8 +28,13 @@
(call $calls-import)
)
+ (func $calls-calls-import-b
+ (call $calls-import)
+ )
+
(func $calls-calls-calls-import
(call $calls-calls-import)
+ (call $calls-calls-import-b)
)
(func $nothing