]> git.lizzy.rs Git - rust.git/blob - src/test/debuginfo/tuple-in-tuple.rs
Auto merge of #28816 - petrochenkov:unistruct, r=nrc
[rust.git] / src / test / debuginfo / tuple-in-tuple.rs
1 // Copyright 2013-2014 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
19 // gdb-command:print no_padding1
20 // gdb-check:$1 = {__0 = {__0 = 0, __1 = 1}, __1 = 2, __2 = 3}
21 // gdb-command:print no_padding2
22 // gdb-check:$2 = {__0 = 4, __1 = {__0 = 5, __1 = 6}, __2 = 7}
23 // gdb-command:print no_padding3
24 // gdb-check:$3 = {__0 = 8, __1 = 9, __2 = {__0 = 10, __1 = 11}}
25
26 // gdb-command:print internal_padding1
27 // gdb-check:$4 = {__0 = 12, __1 = {__0 = 13, __1 = 14}}
28 // gdb-command:print internal_padding2
29 // gdb-check:$5 = {__0 = 15, __1 = {__0 = 16, __1 = 17}}
30
31 // gdb-command:print padding_at_end1
32 // gdb-check:$6 = {__0 = 18, __1 = {__0 = 19, __1 = 20}}
33 // gdb-command:print padding_at_end2
34 // gdb-check:$7 = {__0 = {__0 = 21, __1 = 22}, __1 = 23}
35
36
37 // === LLDB TESTS ==================================================================================
38
39 // lldb-command:run
40
41 // lldb-command:print no_padding1
42 // lldb-check:[...]$0 = ((0, 1), 2, 3)
43 // lldb-command:print no_padding2
44 // lldb-check:[...]$1 = (4, (5, 6), 7)
45 // lldb-command:print no_padding3
46 // lldb-check:[...]$2 = (8, 9, (10, 11))
47
48 // lldb-command:print internal_padding1
49 // lldb-check:[...]$3 = (12, (13, 14))
50 // lldb-command:print internal_padding2
51 // lldb-check:[...]$4 = (15, (16, 17))
52
53 // lldb-command:print padding_at_end1
54 // lldb-check:[...]$5 = (18, (19, 20))
55 // lldb-command:print padding_at_end2
56 // lldb-check:[...]$6 = ((21, 22), 23)
57
58 #![allow(unused_variables)]
59 #![feature(omit_gdb_pretty_printer_section)]
60 #![omit_gdb_pretty_printer_section]
61
62 fn main() {
63     let no_padding1: ((u32, u32), u32, u32) = ((0, 1), 2, 3);
64     let no_padding2: (u32, (u32, u32), u32) = (4, (5, 6), 7);
65     let no_padding3: (u32, u32, (u32, u32)) = (8, 9, (10, 11));
66
67     let internal_padding1: (i16, (i32, i32)) = (12, (13, 14));
68     let internal_padding2: (i16, (i16, i32)) = (15, (16, 17));
69
70     let padding_at_end1: (i32, (i32, i16)) = (18, (19, 20));
71     let padding_at_end2: ((i32, i16), i32) = ((21, 22), 23);
72
73     zzz(); // #break
74 }
75
76 fn zzz() {()}