diff options
| author | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2023-02-25 17:48:45 +0000 |
|---|---|---|
| committer | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2023-02-25 17:48:45 +0000 |
| commit | 26d0d255ce4da75354dc6c7571bb44aa8279b5aa (patch) | |
| tree | f6dccbf3af427fd608ed91b34f03b8b184af5cca | |
| parent | fdfa277158fca61cf5058e1dc2dcac226c4c5e62 (diff) | |
| download | rust-26d0d255ce4da75354dc6c7571bb44aa8279b5aa.tar.gz rust-26d0d255ce4da75354dc6c7571bb44aa8279b5aa.zip | |
Reduce verbosity of libcore testing
| -rw-r--r-- | build_system/tests.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/build_system/tests.rs b/build_system/tests.rs index 41614834eb9..53d43caf942 100644 --- a/build_system/tests.rs +++ b/build_system/tests.rs @@ -137,7 +137,9 @@ const EXTENDED_SYSROOT_SUITE: &[TestCase] = &[ LIBCORE_TESTS.clean(&runner.dirs); if runner.is_native { - spawn_and_wait(LIBCORE_TESTS.test(&runner.target_compiler, &runner.dirs)); + let mut test_cmd = LIBCORE_TESTS.test(&runner.target_compiler, &runner.dirs); + test_cmd.arg("--").arg("-q"); + spawn_and_wait(test_cmd); } else { eprintln!("Cross-Compiling: Not running tests"); let mut build_cmd = LIBCORE_TESTS.build(&runner.target_compiler, &runner.dirs); |
