]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-13304.rs
Rollup merge of #53110 - Xanewok:save-analysis-remap-path, r=nrc
[rust.git] / src / test / run-pass / issue-13304.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // ignore-cloudabi no processes
12 // ignore-emscripten no processes
13
14 use std::env;
15 use std::io::prelude::*;
16 use std::io;
17 use std::process::{Command, Stdio};
18 use std::str;
19
20 fn main() {
21     let args: Vec<String> = env::args().collect();
22     if args.len() > 1 && args[1] == "child" {
23         child();
24     } else {
25         parent();
26     }
27 }
28
29 fn parent() {
30     let args: Vec<String> = env::args().collect();
31     let mut p = Command::new(&args[0]).arg("child")
32                         .stdout(Stdio::piped())
33                         .stdin(Stdio::piped())
34                         .spawn().unwrap();
35     p.stdin.as_mut().unwrap().write_all(b"test1\ntest2\ntest3").unwrap();
36     let out = p.wait_with_output().unwrap();
37     assert!(out.status.success());
38     let s = str::from_utf8(&out.stdout).unwrap();
39     assert_eq!(s, "test1\ntest2\ntest3\n");
40 }
41
42 fn child() {
43     let mut stdin = io::stdin();
44     for line in stdin.lock().lines() {
45         println!("{}", line.unwrap());
46     }
47 }