Fix the std::process::Stdio constructors

There are no tests for this because testing inherit/null is tricky.
Probably why there weren't tests for it to begin with.
This commit is contained in:
Kevin Ballard 2015-02-23 21:41:27 -08:00
parent 2890508d97
commit bbc3f2e525

View File

@ -355,11 +355,11 @@ impl Stdio {
pub fn capture() -> Stdio { Stdio(StdioImp::Capture) }
/// The child inherits from the corresponding parent descriptor.
pub fn inherit() -> Stdio { Stdio(StdioImp::Capture) }
pub fn inherit() -> Stdio { Stdio(StdioImp::Inherit) }
/// This stream will be ignored. This is the equivalent of attaching the
/// stream to `/dev/null`
pub fn null() -> Stdio { Stdio(StdioImp::Capture) }
pub fn null() -> Stdio { Stdio(StdioImp::Null) }
}
/// Describes the result of a process after it has terminated.