]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/sigpipe-should-be-ignored.rs
665b582581cfb88f42745995fd31e183c76452e0
[rust.git] / src / test / run-pass / sigpipe-should-be-ignored.rs
1 // Copyright 2012-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 // Be sure that when a SIGPIPE would have been received that the entire process
12 // doesn't die in a ball of fire, but rather it's gracefully handled.
13
14 use std::env;
15 use std::io::prelude::*;
16 use std::io;
17 use std::process::{Command, Stdio};
18
19 fn test() {
20     let _ = io::stdin().read_line(&mut String::new());
21     io::stdout().write(&[1]);
22     assert!(io::stdout().flush().is_err());
23 }
24
25 fn main() {
26     let args: Vec<String> = env::args().collect();
27     if args.len() > 1 && args[1] == "test" {
28         return test();
29     }
30
31     let mut p = Command::new(&args[0])
32                         .stdout(Stdio::piped())
33                         .stdin(Stdio::piped())
34                         .arg("test").spawn().unwrap();
35     drop(p.stdout.take());
36     assert!(p.wait().unwrap().success());
37 }