diff options
| author | Ivan Petkov <ivanppetkov@gmail.com> | 2019-02-25 19:49:49 -0800 |
|---|---|---|
| committer | Ivan Petkov <ivanppetkov@gmail.com> | 2019-02-25 19:53:32 -0800 |
| commit | abd88a9e3a6014134dac0a705eae6de7448ea514 (patch) | |
| tree | ccff0edad54bf44258fe64684f650dea3736228f /src/libstd/process.rs | |
| parent | 55c173c8ae8bda689fd609f391ee5e2e5b1b6d44 (diff) | |
| download | rust-abd88a9e3a6014134dac0a705eae6de7448ea514.tar.gz rust-abd88a9e3a6014134dac0a705eae6de7448ea514.zip | |
Disable running several Stdio doctests
* A number of `Stdio` related doc examples include running the "rev" command to illustrate piping commands. The majority of these tests are marked as `no_run` except for two tests which were not * Not running these tests is unlikely to cause any negative impact, and doing so also allows the test suite to pass in environments where the "rev" command is unavailable
Diffstat (limited to 'src/libstd/process.rs')
| -rw-r--r-- | src/libstd/process.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/process.rs b/src/libstd/process.rs index a2ef85016d8..735ce61c9bc 100644 --- a/src/libstd/process.rs +++ b/src/libstd/process.rs @@ -1015,7 +1015,7 @@ impl From<ChildStdin> for Stdio { /// /// `ChildStdin` will be converted to `Stdio` using `Stdio::from` under the hood. /// - /// ```rust + /// ```rust,no_run /// use std::process::{Command, Stdio}; /// /// let reverse = Command::new("rev") @@ -1044,7 +1044,7 @@ impl From<ChildStdout> for Stdio { /// /// `ChildStdout` will be converted to `Stdio` using `Stdio::from` under the hood. /// - /// ```rust + /// ```rust,no_run /// use std::process::{Command, Stdio}; /// /// let hello = Command::new("echo") |
