]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/sepcomp-unwind.rs
21c5a6fc83a123fc54f697b52516677716dfe6fc
[rust.git] / src / test / run-pass / sepcomp-unwind.rs
1 // Copyright 2012 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 // compile-flags: -C codegen-units=3
12
13 // Test unwinding through multiple compilation units.
14
15 // According to acrichto, in the distant past `ld -r` (which is used during
16 // linking when codegen-units > 1) was known to produce object files with
17 // damaged unwinding tables.  This may be related to GNU binutils bug #6893
18 // ("Partial linking results in corrupt .eh_frame_hdr"), but I'm not certain.
19 // In any case, this test should let us know if enabling parallel codegen ever
20 // breaks unwinding.
21
22 use std::thread;
23
24 fn pad() -> uint { 0 }
25
26 mod a {
27     pub fn f() {
28         panic!();
29     }
30 }
31
32 mod b {
33     pub fn g() {
34         ::a::f();
35     }
36 }
37
38 fn main() {
39     thread::spawn(move|| { ::b::g() }).join().err().unwrap();
40 }