diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2021-08-30 09:42:45 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-30 16:42:45 +0000 |
commit | fffeac664f2e4433602ad3f34f649b078ba9e782 (patch) | |
tree | 149523b5a31271407aba297b9a599aa90295bbfe /test/lit/stdin-stdout.wast | |
parent | c0b48a61be60fb153933682e1f4369b8325bcb23 (diff) | |
download | binaryen-fffeac664f2e4433602ad3f34f649b078ba9e782.tar.gz binaryen-fffeac664f2e4433602ad3f34f649b078ba9e782.tar.bz2 binaryen-fffeac664f2e4433602ad3f34f649b078ba9e782.zip |
Use ModuleReader::readStdin for file "-" (#4114)
After #4106 we already treat the input file "-" as a shorthand for reading from
stdin at the file.cpp level. However, the "-" input was still treated as a
normal file name at the wasm-io.cpp file and as a result was always treated as
text input. This commit updates wasm-io.cpp to use the stdin code path
supporting both binary and text input for "-".
Fixes #4105 (again).
Diffstat (limited to 'test/lit/stdin-stdout.wast')
-rw-r--r-- | test/lit/stdin-stdout.wast | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/lit/stdin-stdout.wast b/test/lit/stdin-stdout.wast index 8aa9fe89a..e7281fef7 100644 --- a/test/lit/stdin-stdout.wast +++ b/test/lit/stdin-stdout.wast @@ -1,5 +1,6 @@ ;; NOTE: Assertions have been generated by update_lit_checks.py and should not be edited. ;; RUN: wasm-opt < %s - -S -o - | filecheck %s +;; RUN: wasm-opt < %s - -g -o - | wasm-opt - -S -o - | filecheck %s ;; Test that file `-` is interpreted as stdin and stdout. |