]> git.lizzy.rs Git - rust.git/commitdiff
Minor consistency improvement
authorbjorn3 <17426603+bjorn3@users.noreply.github.com>
Sat, 14 Jan 2023 12:14:19 +0000 (12:14 +0000)
committerbjorn3 <17426603+bjorn3@users.noreply.github.com>
Sat, 14 Jan 2023 14:18:11 +0000 (14:18 +0000)
build_system/abi_cafe.rs
build_system/mod.rs

index 63f2efd8e1ef78456b013a6b16e7b87936f3a163..1b4c7c9da214087e7369626016ac4a5d11b6b3fe 100644 (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;
     }
 
index d1932549ee675c5cae550c5363c17fe9f83b4998..f0cde968ae7b871efaf2510ccd6310c289389398 100644 (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;
             }
         }