Skip to content

Commit

Permalink
Rollup merge of #59175 - Zoxc:fix-process-test, r=alexcrichton
Browse files Browse the repository at this point in the history
Don't run test launching `echo` since that doesn't exist on Windows
  • Loading branch information
Mark-Simulacrum committed Mar 14, 2019
2 parents 52dc1d9 + 41cdf07 commit fa9ccc7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/bootstrap/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -408,11 +408,11 @@ impl<'a> Builder<'a> {
test::RustdocJSStd,
test::RustdocJSNotStd,
test::RustdocTheme,
test::RustdocUi,
// Run bootstrap close to the end as it's unlikely to fail
test::Bootstrap,
// Run run-make last, since these won't pass without make on Windows
test::RunMake,
test::RustdocUi
),
Kind::Bench => describe!(test::Crate, test::CrateLibrustc),
Kind::Doc => describe!(
Expand Down
2 changes: 1 addition & 1 deletion src/libstd/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//!
//! The [`Command`] struct is used to configure and spawn processes:
//!
//! ```
//! ```no_run
//! use std::process::Command;
//!
//! let output = Command::new("echo")
Expand Down

0 comments on commit fa9ccc7

Please sign in to comment.