diff options
author | Alexander Guryanov <caiiiycuk@gmail.com> | 2023-10-30 19:59:00 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-30 09:59:00 -0700 |
commit | 7dcc5323316caa89cc9ae873ed6bbfb45996b07e (patch) | |
tree | dcd2fbc7d281f26085211c0ffb3b007a85121385 /test/lit/passes | |
parent | 57e0b2f8ed64d35d9ee2ca350d74ed66ed941c54 (diff) | |
download | binaryen-7dcc5323316caa89cc9ae873ed6bbfb45996b07e.tar.gz binaryen-7dcc5323316caa89cc9ae873ed6bbfb45996b07e.tar.bz2 binaryen-7dcc5323316caa89cc9ae873ed6bbfb45996b07e.zip |
Support one-line-one-function file format for asyncify lists (#6051)
If there are newlines in the list, then we split using them in a simple manner
(that does not take into account nesting of any other delimiters).
Fixes #6047
Fixes #5271
Diffstat (limited to 'test/lit/passes')
3 files changed, 4 insertions, 0 deletions
diff --git a/test/lit/passes/asyncify-foo,bar-nl.txt b/test/lit/passes/asyncify-foo,bar-nl.txt new file mode 100644 index 000000000..a907ec3f4 --- /dev/null +++ b/test/lit/passes/asyncify-foo,bar-nl.txt @@ -0,0 +1,2 @@ +foo +bar
\ No newline at end of file diff --git a/test/lit/passes/asyncify_pass-arg=asyncify-blacklist@foo,bar.wast b/test/lit/passes/asyncify_pass-arg=asyncify-blacklist@foo,bar.wast index c2e81126c..dcc864713 100644 --- a/test/lit/passes/asyncify_pass-arg=asyncify-blacklist@foo,bar.wast +++ b/test/lit/passes/asyncify_pass-arg=asyncify-blacklist@foo,bar.wast @@ -2,6 +2,7 @@ ;; NOTE: This test was ported using port_passes_tests_to_lit.py and could be cleaned up. ;; RUN: foreach %s %t wasm-opt --asyncify --pass-arg=asyncify-blacklist@foo,bar -S -o - | filecheck %s +;; RUN: foreach %s %t wasm-opt --asyncify --pass-arg=asyncify-blacklist@@%S/asyncify-foo,bar-nl.txt -S -o - | filecheck %s (module (memory 1 2) diff --git a/test/lit/passes/asyncify_pass-arg=asyncify-onlylist@foo,bar.wast b/test/lit/passes/asyncify_pass-arg=asyncify-onlylist@foo,bar.wast index 370ce4f6d..ba5c59cd1 100644 --- a/test/lit/passes/asyncify_pass-arg=asyncify-onlylist@foo,bar.wast +++ b/test/lit/passes/asyncify_pass-arg=asyncify-onlylist@foo,bar.wast @@ -2,6 +2,7 @@ ;; NOTE: This test was ported using port_passes_tests_to_lit.py and could be cleaned up. ;; RUN: foreach %s %t wasm-opt --asyncify --pass-arg=asyncify-onlylist@foo,bar -S -o - | filecheck %s +;; RUN: foreach %s %t wasm-opt --asyncify --pass-arg=asyncify-onlylist@@%S/asyncify-foo,bar-nl.txt -S -o - | filecheck %s (module (memory 1 2) |