Auto merge of #22749 - kballard:process-stdio-constructors, r=alexcrichton

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:
bors 2015-02-24 15:01:28 +00:00
commit c9ace059e7

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.