about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJacob Pratt <jacob@jhpratt.dev>2025-03-14 01:37:34 -0400
committerGitHub <noreply@github.com>2025-03-14 01:37:34 -0400
commit7de35c8bb85170e885c34e2fdb45f95d4125e8f2 (patch)
treec90c830cfa6e2b8e44e18750f27fc59bdd823cd5
parentfb2a7fa209709545bd7f8458ff8618da03ab00eb (diff)
parent231627b138b83c5ba388ff31e928d47b14397aa8 (diff)
downloadrust-7de35c8bb85170e885c34e2fdb45f95d4125e8f2.tar.gz
rust-7de35c8bb85170e885c34e2fdb45f95d4125e8f2.zip
Rollup merge of #138441 - tshepang:patch-5, r=jieyouxu
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/");
         }
     }