about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbjorn3 <17426603+bjorn3@users.noreply.github.com>2023-01-14 12:14:19 +0000
committerbjorn3 <17426603+bjorn3@users.noreply.github.com>2023-01-14 14:18:11 +0000
commit9bc113fb3cc69c143c7fcb6b4c22856953dbbe09 (patch)
tree9aab9a1b75272beb981d8b335b1b0e8450c24927
parent395eaa1538a18aff0c433b683625b7decf3c9235 (diff)
downloadrust-9bc113fb3cc69c143c7fcb6b4c22856953dbbe09.tar.gz
rust-9bc113fb3cc69c143c7fcb6b4c22856953dbbe09.zip
Minor consistency improvement
-rw-r--r--build_system/abi_cafe.rs2
-rw-r--r--build_system/mod.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/build_system/abi_cafe.rs b/build_system/abi_cafe.rs
index 63f2efd8e1e..1b4c7c9da21 100644
--- a/build_system/abi_cafe.rs
+++ b/build_system/abi_cafe.rs
@@ -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;
     }
 
diff --git a/build_system/mod.rs b/build_system/mod.rs
index d1932549ee6..f0cde968ae7 100644
--- a/build_system/mod.rs
+++ b/build_system/mod.rs
@@ -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;
             }
         }