]> git.lizzy.rs Git - rust.git/blob - src/test/debuginfo/union-smoke.rs
Rollup merge of #56476 - GuillaumeGomez:invalid-line-number-match, r=QuietMisdreavus
[rust.git] / src / test / debuginfo / union-smoke.rs
1 // Copyright 2016 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 // min-lldb-version: 310
12 // ignore-gdb // Test temporarily ignored due to debuginfo tests being disabled, see PR 47155
13
14 // ignore-gdb-version: 7.11.90 - 7.12.9
15
16 // compile-flags:-g
17
18 // === GDB TESTS ===================================================================================
19
20 // gdb-command:run
21 // gdb-command:print u
22 // gdbg-check:$1 = {a = {__0 = 2 '\002', __1 = 2 '\002'}, b = 514}
23 // gdbr-check:$1 = union_smoke::U {a: (2, 2), b: 514}
24 // gdb-command:print union_smoke::SU
25 // gdbg-check:$2 = {a = {__0 = 1 '\001', __1 = 1 '\001'}, b = 257}
26 // gdbr-check:$2 = union_smoke::U {a: (1, 1), b: 257}
27
28 // === LLDB TESTS ==================================================================================
29
30 // lldb-command:run
31 // lldb-command:print u
32 // lldbg-check:[...]$0 = U { a: ('\x02', '\x02'), b: 514 }
33 // lldbr-check:(union_smoke::U) u = { a = { = 2 = 2 } b = 514 }
34
35 // Don't test this with rust-enabled lldb for now; see
36 // https://github.com/rust-lang-nursery/lldb/issues/18
37 // lldbg-command:print union_smoke::SU
38 // lldbg-check:[...]$1 = U { a: ('\x01', '\x01'), b: 257 }
39
40 #![allow(unused)]
41 #![feature(omit_gdb_pretty_printer_section)]
42 #![omit_gdb_pretty_printer_section]
43
44 union U {
45     a: (u8, u8),
46     b: u16,
47 }
48
49 static mut SU: U = U { a: (1, 1) };
50
51 fn main() {
52     let u = U { b: (2 << 8) + 2 };
53     unsafe { SU = U { a: (1, 1) } }
54
55     zzz(); // #break
56 }
57
58 fn zzz() {()}