]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/capturing-logging.rs
libsyntax: Allow `+` to separate trait bounds from objects.
[rust.git] / src / test / run-pass / capturing-logging.rs
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
11 // ignore-android (FIXME #11419)
12 // exec-env:RUST_LOG=info
13
14 #![feature(phase)]
15
16 #[phase(plugin, link)]
17 extern crate log;
18 extern crate native;
19
20 use log::{set_logger, Logger, LogRecord};
21 use std::fmt;
22 use std::io::{ChanReader, ChanWriter};
23
24 struct MyWriter(ChanWriter);
25
26 impl Logger for MyWriter {
27     fn log(&mut self, record: &LogRecord) {
28         let MyWriter(ref mut inner) = *self;
29         write!(inner, "{}", record.args);
30     }
31 }
32
33 #[start]
34 fn start(argc: int, argv: **u8) -> int {
35     native::start(argc, argv, proc() {
36         main();
37     })
38 }
39
40 fn main() {
41     let (tx, rx) = channel();
42     let (mut r, w) = (ChanReader::new(rx), ChanWriter::new(tx));
43     spawn(proc() {
44         set_logger(box MyWriter(w) as Box<Logger+Send>);
45         debug!("debug");
46         info!("info");
47     });
48     let s = r.read_to_str().unwrap();
49     assert!(s.as_slice().contains("info"));
50     assert!(!s.as_slice().contains("debug"));
51 }