summary refs log tree commit diff
path: root/src/test/ui/threads-sendsync/task-stderr.rs
blob: d474084bf20cee3deb65cf4c8a98d232e0c09673 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// run-pass
// ignore-emscripten no threads support

#![feature(box_syntax, set_stdio)]

use std::io::prelude::*;
use std::io;
use std::str;
use std::sync::{Arc, Mutex};
use std::thread;

struct Sink(Arc<Mutex<Vec<u8>>>);
impl Write for Sink {
    fn write(&mut self, data: &[u8]) -> io::Result<usize> {
        Write::write(&mut *self.0.lock().unwrap(), data)
    }
    fn flush(&mut self) -> io::Result<()> { Ok(()) }
}

fn main() {
    let data = Arc::new(Mutex::new(Vec::new()));
    let sink = Sink(data.clone());
    let res = thread::Builder::new().spawn(move|| -> () {
        io::set_panic(Some(Box::new(sink)));
        panic!("Hello, world!")
    }).unwrap().join();
    assert!(res.is_err());

    let output = data.lock().unwrap();
    let output = str::from_utf8(&output).unwrap();
    assert!(output.contains("Hello, world!"));
}