Skip to content

Commit 7a0fa5a

Browse files
committed
Handle execution of dry run commands
1 parent 41af1eb commit 7a0fa5a

File tree

5 files changed

+23
-8
lines changed

5 files changed

+23
-8
lines changed

src/bootstrap/src/core/build_steps/perf.rs

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ use crate::core::build_steps::compile::{Std, Sysroot};
22
use crate::core::build_steps::tool::{RustcPerf, Tool};
33
use crate::core::builder::Builder;
44
use crate::core::config::DebuginfoLevel;
5-
use crate::utils::exec::BootstrapCommand;
65

76
/// Performs profiling using `rustc-perf` on a built version of the compiler.
87
pub fn perf(builder: &Builder<'_>) {

src/bootstrap/src/core/build_steps/test.rs

+7-1
Original file line numberDiff line numberDiff line change
@@ -1805,7 +1805,13 @@ NOTE: if you're sure you want to do this, please open an issue as to why. In the
18051805

18061806
let lldb_exe = builder.config.lldb.clone().unwrap_or_else(|| PathBuf::from("lldb"));
18071807
let lldb_version = builder
1808-
.run(BootstrapCommand::new(&lldb_exe).capture().allow_failure().arg("--version"))
1808+
.run(
1809+
BootstrapCommand::new(&lldb_exe)
1810+
.capture()
1811+
.allow_failure()
1812+
.run_always()
1813+
.arg("--version"),
1814+
)
18091815
.stdout_if_ok();
18101816
if let Some(ref vers) = lldb_version {
18111817
cmd.arg("--lldb-version").arg(vers);

src/bootstrap/src/core/metadata.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,7 @@ fn workspace_members(build: &Build) -> Vec<Package> {
8181
.arg("--no-deps")
8282
.arg("--manifest-path")
8383
.arg(build.src.join(manifest_path));
84-
// FIXME: fix stderr
85-
let metadata_output = build.run(cargo.capture()).stdout();
84+
let metadata_output = build.run(cargo.capture_stdout().run_always()).stdout();
8685
let Output { packages, .. } = t!(serde_json::from_str(&metadata_output));
8786
packages
8887
};

src/bootstrap/src/lib.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -964,12 +964,11 @@ impl Build {
964964
/// Execute a command and return its output.
965965
/// This method should be used for all command executions in bootstrap.
966966
fn run<C: AsMut<BootstrapCommand>>(&self, mut command: C) -> CommandOutput {
967-
if self.config.dry_run() {
967+
let command = command.as_mut();
968+
if self.config.dry_run() && !command.run_always {
968969
return CommandOutput::default();
969970
}
970971

971-
let command = command.as_mut();
972-
973972
self.verbose(|| println!("running: {command:?}"));
974973

975974
let output: io::Result<Output> = match command.output_mode {

src/bootstrap/src/utils/exec.rs

+13-1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ pub struct BootstrapCommand {
4747
pub command: Command,
4848
pub failure_behavior: BehaviorOnFailure,
4949
pub output_mode: OutputMode,
50+
// Run the command even during dry run
51+
pub run_always: bool,
5052
}
5153

5254
impl BootstrapCommand {
@@ -107,6 +109,11 @@ impl BootstrapCommand {
107109
Self { failure_behavior: BehaviorOnFailure::Ignore, ..self }
108110
}
109111

112+
pub fn run_always(&mut self) -> &mut Self {
113+
self.run_always = true;
114+
self
115+
}
116+
110117
/// Capture the output of the command, do not print it.
111118
pub fn capture(self) -> Self {
112119
Self { output_mode: OutputMode::CaptureAll, ..self }
@@ -128,7 +135,12 @@ impl AsMut<BootstrapCommand> for BootstrapCommand {
128135

129136
impl From<Command> for BootstrapCommand {
130137
fn from(command: Command) -> Self {
131-
Self { command, failure_behavior: BehaviorOnFailure::Exit, output_mode: OutputMode::Print }
138+
Self {
139+
command,
140+
failure_behavior: BehaviorOnFailure::Exit,
141+
output_mode: OutputMode::Print,
142+
run_always: false,
143+
}
132144
}
133145
}
134146

0 commit comments

Comments
 (0)