diff options
author | Alon Zakai <azakai@google.com> | 2023-02-23 09:56:28 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-23 09:56:28 -0800 |
commit | e929b9c23cced499d08630c25a2991391cabdabb (patch) | |
tree | d27feeac37443d8bc1ae8feaac1f8e011675a226 /test/lit/help | |
parent | a6ae22ca0c5c0f4d5e681d749adc0a2d1bea8861 (diff) | |
download | binaryen-e929b9c23cced499d08630c25a2991391cabdabb.tar.gz binaryen-e929b9c23cced499d08630c25a2991391cabdabb.tar.bz2 binaryen-e929b9c23cced499d08630c25a2991391cabdabb.zip |
[wasm-ctor-eval] Add support for multivalue serialization and a quiet mode (#5510)
Simply loop over the values and use tuple.make.
This also adds a lit test for ctor-eval. I found that the problem blocking us
before was the logging, which confuses the update script. As this test at
least does not require that logging, this PR adds a --quiet flag that
disables the logging, and then a lit test just works.
Diffstat (limited to 'test/lit/help')
-rw-r--r-- | test/lit/help/wasm-ctor-eval.test | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/lit/help/wasm-ctor-eval.test b/test/lit/help/wasm-ctor-eval.test index 718249295..34281ea42 100644 --- a/test/lit/help/wasm-ctor-eval.test +++ b/test/lit/help/wasm-ctor-eval.test @@ -26,6 +26,9 @@ ;; CHECK-NEXT: --ignore-external-input,-ipi Assumes no env vars are to be read, stdin ;; CHECK-NEXT: is empty, etc. ;; CHECK-NEXT: +;; CHECK-NEXT: --quiet,-q Do not emit verbose logging about the +;; CHECK-NEXT: eval process +;; CHECK-NEXT: ;; CHECK-NEXT: ;; CHECK-NEXT: Tool options: ;; CHECK-NEXT: ------------- |