tamer: Add `--quiet` flag to `make check` (`cargo test`)

I wonder when this option was introduced, unless I never saw it because it
is called "quiet".  But this is what I always wanted (and how I write the
output for my own tools, like progtest in this repo); the output has long
gotten far too large.

DEV-7145
main
Mike Gerwitz 2022-08-11 13:45:09 -04:00
parent 22a9596cf4
commit 54d8348e95
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ html-am:
# note that 'cargo check' is something else; see 'cargo --help'
test: check
check-am: check-fmt
@CARGO@ +@RUST_TC@ @CARGO_FLAGS@ test @FEATURES@
@CARGO@ +@RUST_TC@ @CARGO_FLAGS@ test --quiet @FEATURES@
check-fmt:
@CARGO@ +@RUST_TC@ @CARGO_FLAGS@ fmt -- --check