summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Petkov <ivanppetkov@gmail.com>2019-02-25 19:49:49 -0800
committerIvan Petkov <ivanppetkov@gmail.com>2019-02-25 19:53:32 -0800
commitabd88a9e3a6014134dac0a705eae6de7448ea514 (patch)
treeccff0edad54bf44258fe64684f650dea3736228f
parent55c173c8ae8bda689fd609f391ee5e2e5b1b6d44 (diff)
downloadrust-abd88a9e3a6014134dac0a705eae6de7448ea514.tar.gz
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
-rw-r--r--src/libstd/process.rs4
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")