// 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 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. // ignore-fast use std::os; use std::old_io; use std::str; fn main() { let args = os::args(); let args = args; if args.len() > 1 && args[1] == "child" { child(); } else { parent(); } } fn parent() { let args = os::args(); let args = args; let mut p = old_io::process::Command::new(&args[0]) .arg("child").spawn().unwrap(); p.stdin.as_mut().unwrap().write_str("test1\ntest2\ntest3").unwrap(); let out = p.wait_with_output().unwrap(); assert!(out.status.success()); let s = str::from_utf8(&out.output).unwrap(); assert_eq!(s, "test1\n\ntest2\n\ntest3\n"); } fn child() { for line in old_io::stdin().lock().lines() { println!("{}", line.unwrap()); } }