Rollup merge of #59175 - Zoxc:fix-process-test, r=alexcrichton
Don't run test launching `echo` since that doesn't exist on Windows
This commit is contained in:
commit
08959313be
2 changed files with 2 additions and 2 deletions
|
@ -408,11 +408,11 @@ impl<'a> Builder<'a> {
|
||||||
test::RustdocJSStd,
|
test::RustdocJSStd,
|
||||||
test::RustdocJSNotStd,
|
test::RustdocJSNotStd,
|
||||||
test::RustdocTheme,
|
test::RustdocTheme,
|
||||||
|
test::RustdocUi,
|
||||||
// Run bootstrap close to the end as it's unlikely to fail
|
// Run bootstrap close to the end as it's unlikely to fail
|
||||||
test::Bootstrap,
|
test::Bootstrap,
|
||||||
// Run run-make last, since these won't pass without make on Windows
|
// Run run-make last, since these won't pass without make on Windows
|
||||||
test::RunMake,
|
test::RunMake,
|
||||||
test::RustdocUi
|
|
||||||
),
|
),
|
||||||
Kind::Bench => describe!(test::Crate, test::CrateLibrustc),
|
Kind::Bench => describe!(test::Crate, test::CrateLibrustc),
|
||||||
Kind::Doc => describe!(
|
Kind::Doc => describe!(
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
//!
|
//!
|
||||||
//! The [`Command`] struct is used to configure and spawn processes:
|
//! The [`Command`] struct is used to configure and spawn processes:
|
||||||
//!
|
//!
|
||||||
//! ```
|
//! ```no_run
|
||||||
//! use std::process::Command;
|
//! use std::process::Command;
|
||||||
//!
|
//!
|
||||||
//! let output = Command::new("echo")
|
//! let output = Command::new("echo")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue