2014-04-07 08:11:31 +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.
|
|
|
|
|
2018-01-02 13:11:41 +00:00
|
|
|
// ignore-cloudabi no processes
|
2017-10-18 01:45:42 +00:00
|
|
|
// ignore-emscripten no processes
|
|
|
|
|
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-04-07 08:11:31 +00:00
|
|
|
use std::str;
|
|
|
|
|
|
|
|
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-10-01 04:09:29 +00:00
|
|
|
child();
|
2014-04-07 08:11:31 +00:00
|
|
|
} else {
|
2014-10-01 04:09:29 +00:00
|
|
|
parent();
|
2014-04-07 08:11:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-01 04:09:29 +00:00
|
|
|
fn parent() {
|
2015-02-16 14:04:02 +00:00
|
|
|
let args: Vec<String> = env::args().collect();
|
2015-02-25 07:27:20 +00:00
|
|
|
let mut p = Command::new(&args[0]).arg("child")
|
2015-03-30 18:00:05 +00:00
|
|
|
.stdout(Stdio::piped())
|
|
|
|
.stdin(Stdio::piped())
|
2015-02-25 07:27:20 +00:00
|
|
|
.spawn().unwrap();
|
|
|
|
p.stdin.as_mut().unwrap().write_all(b"test1\ntest2\ntest3").unwrap();
|
2014-05-05 23:58:42 +00:00
|
|
|
let out = p.wait_with_output().unwrap();
|
2014-04-07 08:11:31 +00:00
|
|
|
assert!(out.status.success());
|
2015-02-25 07:27:20 +00:00
|
|
|
let s = str::from_utf8(&out.stdout).unwrap();
|
|
|
|
assert_eq!(s, "test1\ntest2\ntest3\n");
|
2014-04-07 08:11:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn child() {
|
2015-02-25 07:27:20 +00:00
|
|
|
let mut stdin = io::stdin();
|
2015-01-12 16:23:40 +00:00
|
|
|
for line in stdin.lock().lines() {
|
2014-04-07 08:11:31 +00:00
|
|
|
println!("{}", line.unwrap());
|
|
|
|
}
|
|
|
|
}
|