]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/logging-separate-lines.rs
auto merge of #14694 : aochagavia/rust/num-cleanup, r=alexcrichton
[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-win32
13
14 #![feature(phase)]
15
16 #[phase(plugin, link)]
17 extern crate log;
18
19 use std::io::Command;
20 use std::os;
21 use std::str;
22
23 fn main() {
24     let args = os::args();
25     let args = args.as_slice();
26     if args.len() > 1 && args[1].as_slice() == "child" {
27         debug!("foo");
28         debug!("bar");
29         return
30     }
31
32     let env = [("RUST_LOG".to_string(), "debug".to_string())];
33     let p = Command::new(args[0].as_slice())
34                     .arg("child").env(env.as_slice())
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 }