2018-08-30 12:18:55 +00:00
|
|
|
// run-pass
|
2021-12-03 15:32:51 +00:00
|
|
|
// needs-unwind
|
2018-09-25 21:51:35 +00:00
|
|
|
#![allow(dead_code)]
|
2014-08-01 22:45:24 +00:00
|
|
|
// compile-flags: -C codegen-units=3
|
2016-02-11 11:34:41 +00:00
|
|
|
// ignore-emscripten no threads support
|
2014-08-01 22:45:24 +00: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 20:13:15 +00:00
|
|
|
|
2015-02-17 23:24:34 +00:00
|
|
|
use std::thread;
|
2015-01-02 07:53:35 +00:00
|
|
|
|
2015-03-26 00:06:52 +00:00
|
|
|
fn pad() -> usize { 0 }
|
2014-08-01 22:45:24 +00:00
|
|
|
|
|
|
|
mod a {
|
|
|
|
pub fn f() {
|
2014-10-09 19:17:22 +00:00
|
|
|
panic!();
|
2014-08-01 22:45:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod b {
|
|
|
|
pub fn g() {
|
|
|
|
::a::f();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2016-05-06 23:32:18 +00:00
|
|
|
thread::spawn(move|| { ::b::g() }).join().unwrap_err();
|
2014-08-01 22:45:24 +00:00
|
|
|
}
|