summaryrefslogtreecommitdiff
path: root/test/passes/asyncify_pass-arg=asyncify-whitelist@foo,bar.wast
diff options
context:
space:
mode:
Diffstat (limited to 'test/passes/asyncify_pass-arg=asyncify-whitelist@foo,bar.wast')
-rw-r--r--test/passes/asyncify_pass-arg=asyncify-whitelist@foo,bar.wast20
1 files changed, 0 insertions, 20 deletions
diff --git a/test/passes/asyncify_pass-arg=asyncify-whitelist@foo,bar.wast b/test/passes/asyncify_pass-arg=asyncify-whitelist@foo,bar.wast
deleted file mode 100644
index 355ca1b11..000000000
--- a/test/passes/asyncify_pass-arg=asyncify-whitelist@foo,bar.wast
+++ /dev/null
@@ -1,20 +0,0 @@
-(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) ;; even though we call foo, we are not in the whitelist, so do not instrument us
- )
- (func $other2
- (call $baz)
- )
-)
-