2014-05-27 19:08:27 +00:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2015-03-06 02:33:58 +00:00
|
|
|
#![feature(io, process_capture)]
|
|
|
|
|
2015-02-16 14:04:02 +00:00
|
|
|
use std::env;
|
2015-02-25 07:27:20 +00:00
|
|
|
use std::io::prelude::*;
|
|
|
|
use std::io;
|
|
|
|
use std::process::{Command, Stdio};
|
2014-05-27 19:08:27 +00:00
|
|
|
|
|
|
|
fn main() {
|
2015-02-16 14:04:02 +00:00
|
|
|
let args: Vec<String> = env::args().collect();
|
2015-02-02 02:53:25 +00:00
|
|
|
if args.len() > 1 && args[1] == "child" {
|
2014-05-27 19:08:27 +00:00
|
|
|
return child()
|
|
|
|
}
|
|
|
|
|
|
|
|
test();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn child() {
|
2015-02-25 07:27:20 +00:00
|
|
|
writeln!(&mut io::stdout(), "foo").unwrap();
|
|
|
|
writeln!(&mut io::stderr(), "bar").unwrap();
|
|
|
|
let mut stdin = io::stdin();
|
|
|
|
let mut s = String::new();
|
|
|
|
stdin.lock().read_line(&mut s).unwrap();
|
|
|
|
assert_eq!(s.len(), 0);
|
2014-05-27 19:08:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn test() {
|
2015-02-16 14:04:02 +00:00
|
|
|
let args: Vec<String> = env::args().collect();
|
2015-02-02 02:53:25 +00:00
|
|
|
let mut p = Command::new(&args[0]).arg("child")
|
2015-02-25 07:27:20 +00:00
|
|
|
.stdin(Stdio::capture())
|
|
|
|
.stdout(Stdio::capture())
|
|
|
|
.stderr(Stdio::capture())
|
2014-05-27 19:08:27 +00:00
|
|
|
.spawn().unwrap();
|
|
|
|
assert!(p.wait().unwrap().success());
|
|
|
|
}
|