]> git.proxmox.com Git - rustc.git/blame - src/test/run-pass/issue-14456.rs
New upstream version 1.23.0+dfsg1
[rustc.git] / src / test / run-pass / issue-14456.rs
CommitLineData
1a4d82fc
JJ
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
abe05a73 11// ignore-emscripten no processes
c34b1796
AL
12
13#![feature(io, process_capture)]
1a4d82fc 14
85aaf69f 15use std::env;
c34b1796
AL
16use std::io::prelude::*;
17use std::io;
18use std::process::{Command, Stdio};
1a4d82fc
JJ
19
20fn main() {
85aaf69f
SL
21 let args: Vec<String> = env::args().collect();
22 if args.len() > 1 && args[1] == "child" {
1a4d82fc
JJ
23 return child()
24 }
25
26 test();
1a4d82fc
JJ
27}
28
29fn child() {
c34b1796
AL
30 writeln!(&mut io::stdout(), "foo").unwrap();
31 writeln!(&mut io::stderr(), "bar").unwrap();
32 let mut stdin = io::stdin();
33 let mut s = String::new();
34 stdin.lock().read_line(&mut s).unwrap();
35 assert_eq!(s.len(), 0);
1a4d82fc
JJ
36}
37
38fn test() {
85aaf69f
SL
39 let args: Vec<String> = env::args().collect();
40 let mut p = Command::new(&args[0]).arg("child")
c34b1796
AL
41 .stdin(Stdio::piped())
42 .stdout(Stdio::piped())
43 .stderr(Stdio::piped())
1a4d82fc
JJ
44 .spawn().unwrap();
45 assert!(p.wait().unwrap().success());
46}