diff options
| author | kennytm <kennytm@gmail.com> | 2019-03-16 14:56:57 +0800 |
|---|---|---|
| committer | kennytm <kennytm@gmail.com> | 2019-03-16 22:40:39 +0800 |
| commit | 08959313bebd77a02db2d036a5b39714cba930bc (patch) | |
| tree | a964a8bd962616b65200af9fe2082c21962fe0bb /src | |
| parent | 6ffcf97be5bf263ac79e7164592ce84514cde326 (diff) | |
| parent | 41cdf07483ed39ccd85ce1c9ae7512ceb3bbb657 (diff) | |
| download | rust-08959313bebd77a02db2d036a5b39714cba930bc.tar.gz rust-08959313bebd77a02db2d036a5b39714cba930bc.zip | |
Rollup merge of #59175 - Zoxc:fix-process-test, r=alexcrichton
Don't run test launching `echo` since that doesn't exist on Windows
Diffstat (limited to 'src')
| -rw-r--r-- | src/bootstrap/builder.rs | 2 | ||||
| -rw-r--r-- | src/libstd/process.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/bootstrap/builder.rs b/src/bootstrap/builder.rs index ffd23e72e80..daa6749f87f 100644 --- a/src/bootstrap/builder.rs +++ b/src/bootstrap/builder.rs @@ -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!( diff --git a/src/libstd/process.rs b/src/libstd/process.rs index 56840009344..ad86acbb47d 100644 --- a/src/libstd/process.rs +++ b/src/libstd/process.rs @@ -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") |
