]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/logging-separate-lines.rs
rollup merge of #17326 : brson/wintest
[rust.git] / src / test / run-pass / logging-separate-lines.rs
1 // Copyright 2013-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-android
12 // ignore-windows
13 // exec-env:RUST_LOG=debug
14
15 #![feature(phase)]
16
17 #[phase(plugin, link)]
18 extern crate log;
19
20 use std::io::Command;
21 use std::os;
22 use std::str;
23
24 fn main() {
25     let args = os::args();
26     let args = args.as_slice();
27     if args.len() > 1 && args[1].as_slice() == "child" {
28         debug!("foo");
29         debug!("bar");
30         return
31     }
32
33     let p = Command::new(args[0].as_slice())
34                     .arg("child")
35                     .spawn().unwrap().wait_with_output().unwrap();
36     assert!(p.status.success());
37     let mut lines = str::from_utf8(p.error.as_slice()).unwrap().lines();
38     assert!(lines.next().unwrap().contains("foo"));
39     assert!(lines.next().unwrap().contains("bar"));
40 }