Reduce verbosity of libcore testing

This commit is contained in:
bjorn3 2023-02-25 17:48:45 +00:00
parent fdfa277158
commit 26d0d255ce

View File

@ -137,7 +137,9 @@ const fn jit_bin(config: &'static str, source: &'static str, args: &'static str)
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);