]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-24313.rs
run EndRegion when unwinding otherwise-empty scopes
[rust.git] / src / test / run-pass / issue-24313.rs
1 // Copyright 2015 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-emscripten
12
13 use std::thread;
14 use std::env;
15 use std::process::Command;
16
17 struct Handle(i32);
18
19 impl Drop for Handle {
20     fn drop(&mut self) { panic!(); }
21 }
22
23 thread_local!(static HANDLE: Handle = Handle(0));
24
25 fn main() {
26     let args = env::args().collect::<Vec<_>>();
27     if args.len() == 1 {
28         let out = Command::new(&args[0]).arg("test").output().unwrap();
29         let stderr = std::str::from_utf8(&out.stderr).unwrap();
30         assert!(stderr.contains("panicked at 'explicit panic'"),
31                 "bad failure message:\n{}\n", stderr);
32     } else {
33         // TLS dtors are not always run on process exit
34         thread::spawn(|| {
35             HANDLE.with(|h| {
36                 println!("{}", h.0);
37             });
38         }).join().unwrap();
39     }
40 }
41