Skip to content

Commit fa9ccc7

Browse files
Rollup merge of rust-lang#59175 - Zoxc:fix-process-test, r=alexcrichton
Don't run test launching `echo` since that doesn't exist on Windows
2 parents 52dc1d9 + 41cdf07 commit fa9ccc7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: src/bootstrap/builder.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -408,11 +408,11 @@ impl<'a> Builder<'a> {
408408
test::RustdocJSStd,
409409
test::RustdocJSNotStd,
410410
test::RustdocTheme,
411+
test::RustdocUi,
411412
// Run bootstrap close to the end as it's unlikely to fail
412413
test::Bootstrap,
413414
// Run run-make last, since these won't pass without make on Windows
414415
test::RunMake,
415-
test::RustdocUi
416416
),
417417
Kind::Bench => describe!(test::Crate, test::CrateLibrustc),
418418
Kind::Doc => describe!(

Diff for: src/libstd/process.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
//!
99
//! The [`Command`] struct is used to configure and spawn processes:
1010
//!
11-
//! ```
11+
//! ```no_run
1212
//! use std::process::Command;
1313
//!
1414
//! let output = Command::new("echo")

0 commit comments

Comments
 (0)