We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdfa277 commit 26d0d25Copy full SHA for 26d0d25
build_system/tests.rs
@@ -137,7 +137,9 @@ const EXTENDED_SYSROOT_SUITE: &[TestCase] = &[
137
LIBCORE_TESTS.clean(&runner.dirs);
138
139
if runner.is_native {
140
- spawn_and_wait(LIBCORE_TESTS.test(&runner.target_compiler, &runner.dirs));
+ let mut test_cmd = LIBCORE_TESTS.test(&runner.target_compiler, &runner.dirs);
141
+ test_cmd.arg("--").arg("-q");
142
+ spawn_and_wait(test_cmd);
143
} else {
144
eprintln!("Cross-Compiling: Not running tests");
145
let mut build_cmd = LIBCORE_TESTS.build(&runner.target_compiler, &runner.dirs);
0 commit comments