about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTshepang Mbambo <tshepang@gmail.com>2025-03-13 04:48:46 +0200
committerGitHub <noreply@github.com>2025-03-13 04:48:46 +0200
commit231627b138b83c5ba388ff31e928d47b14397aa8 (patch)
treefbf423654aa1a7979c2b4414be3056a837454744
parent0e76f8b7e02b1ddd349dde1501f73426a4e764cf (diff)
downloadrust-231627b138b83c5ba388ff31e928d47b14397aa8.tar.gz
rust-231627b138b83c5ba388ff31e928d47b14397aa8.zip
update error message
[`compile-pass` has since been renamed to `build-pass`](https://github.com/rust-lang/rust/issues/62277)
-rw-r--r--src/tools/compiletest/src/runtest/incremental.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/compiletest/src/runtest/incremental.rs b/src/tools/compiletest/src/runtest/incremental.rs
index 591aff0defe..ea985866a05 100644
--- a/src/tools/compiletest/src/runtest/incremental.rs
+++ b/src/tools/compiletest/src/runtest/incremental.rs
@@ -65,7 +65,7 @@ impl TestCx<'_> {
 
         // FIXME(#41968): Move this check to tidy?
         if !errors::load_errors(&self.testpaths.file, self.revision).is_empty() {
-            self.fatal("compile-pass tests with expected warnings should be moved to ui/");
+            self.fatal("build-pass tests with expected warnings should be moved to ui/");
         }
     }