Minor consistency improvement

This commit is contained in:
bjorn3 2023-01-14 12:14:19 +00:00
parent 395eaa1538
commit 9bc113fb3c
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ pub(crate) fn run(
host_compiler: &Compiler,
) {
if !config::get_bool("testsuite.abi-cafe") {
eprintln!("[SKIP] abi-cafe");
eprintln!("[RUN] abi-cafe (skipped)");
return;
}

View File

@ -153,7 +153,7 @@ pub fn main() {
if host_compiler.triple == target_triple {
abi_cafe::run(channel, sysroot_kind, &dirs, &cg_clif_dylib, &host_compiler);
} else {
eprintln!("[SKIP] abi-cafe (cross-compilation not supported)");
eprintln!("[RUN] abi-cafe (skipped, cross-compilation not supported)");
return;
}
}