summaryrefslogtreecommitdiff
path: root/test/passes/asyncify_pass-arg=asyncify-blacklist@foo,bar.wast
diff options
context:
space:
mode:
Diffstat (limited to 'test/passes/asyncify_pass-arg=asyncify-blacklist@foo,bar.wast')
-rw-r--r--test/passes/asyncify_pass-arg=asyncify-blacklist@foo,bar.wast20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/passes/asyncify_pass-arg=asyncify-blacklist@foo,bar.wast b/test/passes/asyncify_pass-arg=asyncify-blacklist@foo,bar.wast
new file mode 100644
index 000000000..8496e7ee2
--- /dev/null
+++ b/test/passes/asyncify_pass-arg=asyncify-blacklist@foo,bar.wast
@@ -0,0 +1,20 @@
+(module
+ (memory 1 2)
+ (import "env" "import" (func $import))
+ (func $foo
+ (call $import)
+ )
+ (func $bar
+ (call $import)
+ )
+ (func $baz
+ (call $import)
+ )
+ (func $other1
+ (call $foo)
+ )
+ (func $other2
+ (call $baz)
+ )
+)
+