]> git.lizzy.rs Git - rust.git/blob - src/test/debuginfo/union-smoke.rs
5d3fbd62023871b873767fde4018f59144b0adb7
[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
13 // compile-flags:-g
14
15 // === GDB TESTS ===================================================================================
16
17 // gdb-command:run
18 // gdb-command:print u
19 // gdbg-check:$1 = {a = {__0 = 2 '\002', __1 = 2 '\002'}, b = 514}
20 // gdbr-check:$1 = union_smoke::U {a: (2, 2), b: 514}
21 // gdb-command:print union_smoke::SU
22 // gdbg-check:$2 = {a = {__0 = 1 '\001', __1 = 1 '\001'}, b = 257}
23 // gdbr-check:$2 = union_smoke::U {a: (1, 1), b: 257}
24
25 // === LLDB TESTS ==================================================================================
26
27 // lldb-command:run
28 // lldb-command:print u
29 // lldb-check:[...]$0 = U { a: ('\x02', '\x02'), b: 514 }
30 // lldb-command:print union_smoke::SU
31 // lldb-check:[...]$1 = U { a: ('\x01', '\x01'), b: 257 }
32
33 #![allow(unused)]
34 #![feature(omit_gdb_pretty_printer_section)]
35 #![omit_gdb_pretty_printer_section]
36 #![feature(untagged_unions)]
37
38 union U {
39     a: (u8, u8),
40     b: u16,
41 }
42
43 static mut SU: U = U { a: (1, 1) };
44
45 fn main() {
46     let u = U { b: (2 << 8) + 2 };
47     unsafe { SU = U { a: (1, 1) } }
48
49     zzz(); // #break
50 }
51
52 fn zzz() {()}