Skip to content

Commit 9bc113f

Browse files
committed
Minor consistency improvement
1 parent 395eaa1 commit 9bc113f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build_system/abi_cafe.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ pub(crate) fn run(
2121
host_compiler: &Compiler,
2222
) {
2323
if !config::get_bool("testsuite.abi-cafe") {
24-
eprintln!("[SKIP] abi-cafe");
24+
eprintln!("[RUN] abi-cafe (skipped)");
2525
return;
2626
}
2727

build_system/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ pub fn main() {
153153
if host_compiler.triple == target_triple {
154154
abi_cafe::run(channel, sysroot_kind, &dirs, &cg_clif_dylib, &host_compiler);
155155
} else {
156-
eprintln!("[SKIP] abi-cafe (cross-compilation not supported)");
156+
eprintln!("[RUN] abi-cafe (skipped, cross-compilation not supported)");
157157
return;
158158
}
159159
}

0 commit comments

Comments
 (0)