Skip to content

Commit 38983df

Browse files
Rollup merge of #127112 - ChrisDenton:lldb, r=Kobzol
Bootstrap: Don't get output if `lldb --version` errors fixes #126892 `Command` can error in two ways: the OS can fail to run the binary at all or else the binary can return an error exit code. Unfortunately the distinction between the two is not clear cut. The OS may succeed in starting the binary but it may still error before `main` (e.g. if a necessary library fails to load) and this will be reported via the exit code. Fortunately this case is simpler. We can assume that `lldb --version` will only ever error if there's a startup issue of some kind. so both kinds of errors are caused by the OS. Thus it's safe for us to treat them equally for the sake of this specific check.
2 parents 0886faa + a6ef91e commit 38983df

File tree

1 file changed

+14
-12
lines changed
  • src/bootstrap/src/core/build_steps

1 file changed

+14
-12
lines changed

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

+14-12
Original file line numberDiff line numberDiff line change
@@ -1817,23 +1817,25 @@ NOTE: if you're sure you want to do this, please open an issue as to why. In the
18171817
cmd.arg("--gdb").arg(gdb);
18181818
}
18191819

1820-
let run = |cmd: &mut Command| {
1821-
cmd.output().map(|output| {
1822-
String::from_utf8_lossy(&output.stdout)
1823-
.lines()
1824-
.next()
1825-
.unwrap_or_else(|| panic!("{:?} failed {:?}", cmd, output))
1826-
.to_string()
1827-
})
1828-
};
1829-
18301820
let lldb_exe = builder.config.lldb.clone().unwrap_or_else(|| PathBuf::from("lldb"));
18311821
let lldb_version = Command::new(&lldb_exe)
18321822
.arg("--version")
18331823
.output()
1834-
.map(|output| String::from_utf8_lossy(&output.stdout).to_string())
1835-
.ok();
1824+
.map(|output| {
1825+
(String::from_utf8_lossy(&output.stdout).to_string(), output.status.success())
1826+
})
1827+
.ok()
1828+
.and_then(|(output, success)| if success { Some(output) } else { None });
18361829
if let Some(ref vers) = lldb_version {
1830+
let run = |cmd: &mut Command| {
1831+
cmd.output().map(|output| {
1832+
String::from_utf8_lossy(&output.stdout)
1833+
.lines()
1834+
.next()
1835+
.unwrap_or_else(|| panic!("{:?} failed {:?}", cmd, output))
1836+
.to_string()
1837+
})
1838+
};
18371839
cmd.arg("--lldb-version").arg(vers);
18381840
let lldb_python_dir = run(Command::new(&lldb_exe).arg("-P")).ok();
18391841
if let Some(ref dir) = lldb_python_dir {

0 commit comments

Comments
 (0)