]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/sigpipe-should-be-ignored.rs
rustdoc: Replace no-pretty-expanded with pretty-expanded
[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 // pretty-expanded FIXME #23616
15
16 use std::env;
17 use std::io::prelude::*;
18 use std::io;
19 use std::process::{Command, Stdio};
20
21 fn test() {
22     let _ = io::stdin().read_line(&mut String::new());
23     io::stdout().write(&[1]);
24     assert!(io::stdout().flush().is_err());
25 }
26
27 fn main() {
28     let args: Vec<String> = env::args().collect();
29     if args.len() > 1 && args[1] == "test" {
30         return test();
31     }
32
33     let mut p = Command::new(&args[0])
34                         .stdout(Stdio::piped())
35                         .stdin(Stdio::piped())
36                         .arg("test").spawn().unwrap();
37     drop(p.stdout.take());
38     assert!(p.wait().unwrap().success());
39 }