about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2025-07-12 11:08:30 +0200
committerRalf Jung <post@ralfj.de>2025-07-12 11:11:29 +0200
commit73edfe7b7395aad2ee55c57cabc8cee9edfbf462 (patch)
treeb9d5eeb37ebf61c62b3d6ea521f92bbe453a61c4 /src/bootstrap
parent855e0fe46e68d94e9f6147531b75ac2d488c548e (diff)
downloadrust-73edfe7b7395aad2ee55c57cabc8cee9edfbf462.tar.gz
rust-73edfe7b7395aad2ee55c57cabc8cee9edfbf462.zip
clippy: fix test filtering when TESTNAME is empty
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/src/core/build_steps/test.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bootstrap/src/core/build_steps/test.rs b/src/bootstrap/src/core/build_steps/test.rs
index 716bef3f38c..18e169bb2f0 100644
--- a/src/bootstrap/src/core/build_steps/test.rs
+++ b/src/bootstrap/src/core/build_steps/test.rs
@@ -680,9 +680,9 @@ impl Step for CargoMiri {
                 cargo.arg("--doc");
             }
         }
-
-        // Finally, pass test-args and run everything.
         cargo.arg("--").args(builder.config.test_args());
+
+        // Finally, run everything.
         let mut cargo = BootstrapCommand::from(cargo);
         {
             let _guard = builder.msg_sysroot_tool(Kind::Test, stage, "cargo-miri", host, target);