2018-08-30 14:18:55 +02:00
|
|
|
//@ run-pass
|
2021-12-03 15:32:51 +00:00
|
|
|
//@ needs-unwind
|
2018-09-25 23:51:35 +02:00
|
|
|
#![allow(dead_code)]
|
2014-08-01 15:45:24 -07:00
|
|
|
//@ compile-flags: -C codegen-units=3
|
2016-02-11 12:34:41 +01:00
|
|
|
//@ ignore-emscripten no threads support
|
2014-08-01 15:45:24 -07:00
|
|
|
|
|
|
|
// Test unwinding through multiple compilation units.
|
|
|
|
|
|
|
|
// According to acrichto, in the distant past `ld -r` (which is used during
|
|
|
|
// linking when codegen-units > 1) was known to produce object files with
|
|
|
|
// damaged unwinding tables. This may be related to GNU binutils bug #6893
|
|
|
|
// ("Partial linking results in corrupt .eh_frame_hdr"), but I'm not certain.
|
|
|
|
// In any case, this test should let us know if enabling parallel codegen ever
|
|
|
|
// breaks unwinding.
|
|
|
|
|
2015-03-22 13:13:15 -07:00
|
|
|
|
2015-02-17 15:24:34 -08:00
|
|
|
use std::thread;
|
2015-01-01 23:53:35 -08:00
|
|
|
|
2015-03-25 17:06:52 -07:00
|
|
|
fn pad() -> usize { 0 }
|
2014-08-01 15:45:24 -07:00
|
|
|
|
|
|
|
mod a {
|
|
|
|
pub fn f() {
|
2014-10-09 15:17:22 -04:00
|
|
|
panic!();
|
2014-08-01 15:45:24 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod b {
|
|
|
|
pub fn g() {
|
|
|
|
::a::f();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2016-05-06 19:32:18 -04:00
|
|
|
thread::spawn(move|| { ::b::g() }).join().unwrap_err();
|
2014-08-01 15:45:24 -07:00
|
|
|
}
|