2014-06-17 16:48:54 -05:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2015-01-07 19:25:56 -06:00
|
|
|
#![allow(unknown_features)]
|
|
|
|
#![feature(box_syntax)]
|
|
|
|
|
2014-12-23 13:53:35 -06:00
|
|
|
use std::sync::mpsc::channel;
|
2015-01-22 18:31:00 -06:00
|
|
|
use std::old_io::{ChanReader, ChanWriter};
|
2014-12-06 20:34:37 -06:00
|
|
|
use std::thread;
|
2014-06-17 16:48:54 -05:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let (tx, rx) = channel();
|
|
|
|
let mut reader = ChanReader::new(rx);
|
|
|
|
let stderr = ChanWriter::new(tx);
|
|
|
|
|
2015-01-05 23:59:45 -06:00
|
|
|
let res = thread::Builder::new().stderr(box stderr as Box<Writer + Send>).scoped(move|| -> () {
|
2014-10-09 14:17:22 -05:00
|
|
|
panic!("Hello, world!")
|
2014-12-06 20:34:37 -06:00
|
|
|
}).join();
|
2014-06-17 16:48:54 -05:00
|
|
|
assert!(res.is_err());
|
|
|
|
|
2014-06-21 05:39:03 -05:00
|
|
|
let output = reader.read_to_string().unwrap();
|
2014-06-17 16:48:54 -05:00
|
|
|
assert!(output.as_slice().contains("Hello, world!"));
|
|
|
|
}
|