diff options
| author | John Kåre Alsaker <john.kare.alsaker@gmail.com> | 2019-03-14 05:53:44 +0100 |
|---|---|---|
| committer | John Kåre Alsaker <john.kare.alsaker@gmail.com> | 2019-03-14 05:53:44 +0100 |
| commit | 88d43a052a9230230bb263ff0b7b072134203510 (patch) | |
| tree | 27521be3c8869f1fdd51d204224ebfcd414c413f | |
| parent | 0ad32077451ab40af7e2d9ef21ba75544038773d (diff) | |
| download | rust-88d43a052a9230230bb263ff0b7b072134203510.tar.gz rust-88d43a052a9230230bb263ff0b7b072134203510.zip | |
Don't run test launching `echo` since that doesn't exist on Windows
| -rw-r--r-- | src/libstd/process.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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") |
