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/libstd/process.rs | |
| 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/libstd/process.rs')
| -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") |
