about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorZalathar <Zalathar@users.noreply.github.com>2023-10-25 19:06:04 +1100
committerZalathar <Zalathar@users.noreply.github.com>2023-10-27 17:18:47 +1100
commitbe0d73afec845d938899bf153a092d675288c79a (patch)
treea023be927e109f6c85979d4279fbd3a462419dd4 /src/bootstrap
parent707d8c3f1bba10d5aaa9c8719c410711edf2e227 (diff)
downloadrust-be0d73afec845d938899bf153a092d675288c79a.tar.gz
rust-be0d73afec845d938899bf153a092d675288c79a.zip
Don't provide `rust-demangler` to run-make tests
The demangler was only needed by coverage tests, but those tests were migrated
into their own custom test mode in #112300.

This avoids having to build the demangler just for run-make tests. It will
still be built as needed by run-coverage tests or for other purposes.
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/src/core/build_steps/test.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/src/core/build_steps/test.rs b/src/bootstrap/src/core/build_steps/test.rs
index 27eac212b14..f2284b8a4ba 100644
--- a/src/bootstrap/src/core/build_steps/test.rs
+++ b/src/bootstrap/src/core/build_steps/test.rs
@@ -1567,7 +1567,7 @@ note: if you're sure you want to do this, please open an issue as to why. In the
             cmd.arg("--coverage-dump-path").arg(coverage_dump);
         }
 
-        if mode == "run-make" || mode == "run-coverage" {
+        if mode == "run-coverage" {
             let rust_demangler = builder
                 .ensure(tool::RustDemangler {
                     compiler,