Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 26d0d25

Browse files
committed
Reduce verbosity of libcore testing
1 parent fdfa277 commit 26d0d25

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

build_system/tests.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,9 @@ const EXTENDED_SYSROOT_SUITE: &[TestCase] = &[
137137
LIBCORE_TESTS.clean(&runner.dirs);
138138

139139
if runner.is_native {
140-
spawn_and_wait(LIBCORE_TESTS.test(&runner.target_compiler, &runner.dirs));
140+
let mut test_cmd = LIBCORE_TESTS.test(&runner.target_compiler, &runner.dirs);
141+
test_cmd.arg("--").arg("-q");
142+
spawn_and_wait(test_cmd);
141143
} else {
142144
eprintln!("Cross-Compiling: Not running tests");
143145
let mut build_cmd = LIBCORE_TESTS.build(&runner.target_compiler, &runner.dirs);

0 commit comments

Comments
 (0)