]> git.lizzy.rs Git - rust.git/blob - src/test/debuginfo/struct-in-enum.rs
Rollup merge of #51722 - Aaronepower:master, r=Mark-Simulacrum
[rust.git] / src / test / debuginfo / struct-in-enum.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 // ignore-tidy-linelength
12 // min-lldb-version: 310
13 // ignore-gdb-version: 7.11.90 - 7.12.9
14 // ignore-test // Test temporarily ignored due to debuginfo tests being disabled, see PR 47155
15
16 // compile-flags:-g
17
18 // === GDB TESTS ===================================================================================
19
20 // gdb-command:set print union on
21 // gdb-command:run
22
23 // gdb-command:print case1
24 // gdbg-check:$1 = {{RUST$ENUM$DISR = Case1, __0 = 0, __1 = {x = 2088533116, y = 2088533116, z = 31868}}, {RUST$ENUM$DISR = Case1, [...]}}
25 // gdbr-check:$1 = struct_in_enum::Regular::Case1(0, struct_in_enum::Struct {x: 2088533116, y: 2088533116, z: 31868})
26
27 // gdb-command:print case2
28 // gdbg-check:$2 = {{RUST$ENUM$DISR = Case2, [...]}, {RUST$ENUM$DISR = Case2, __0 = 0, __1 = 1229782938247303441, __2 = 4369}}
29 // gdbr-check:$2 = struct_in_enum::Regular::Case2(0, 1229782938247303441, 4369)
30
31 // gdb-command:print univariant
32 // gdbg-check:$3 = {{__0 = {x = 123, y = 456, z = 789}}}
33 // gdbr-check:$3 = struct_in_enum::Univariant::TheOnlyCase(struct_in_enum::Struct {x: 123, y: 456, z: 789})
34
35
36 // === LLDB TESTS ==================================================================================
37
38 // lldb-command:run
39
40 // lldb-command:print case1
41 // lldb-check:[...]$0 = Case1(0, Struct { x: 2088533116, y: 2088533116, z: 31868 })
42 // lldb-command:print case2
43 // lldb-check:[...]$1 = Case2(0, 1229782938247303441, 4369)
44
45 // lldb-command:print univariant
46 // lldb-check:[...]$2 = TheOnlyCase(Struct { x: 123, y: 456, z: 789 })
47
48 #![allow(unused_variables)]
49 #![feature(omit_gdb_pretty_printer_section)]
50 #![omit_gdb_pretty_printer_section]
51
52 use self::Regular::{Case1, Case2};
53 use self::Univariant::TheOnlyCase;
54
55 struct Struct {
56     x: u32,
57     y: i32,
58     z: i16
59 }
60
61 // The first element is to ensure proper alignment, irrespective of the machines word size. Since
62 // the size of the discriminant value is machine dependent, this has be taken into account when
63 // datatype layout should be predictable as in this case.
64 enum Regular {
65     Case1(u64, Struct),
66     Case2(u64, u64, i16)
67 }
68
69 enum Univariant {
70     TheOnlyCase(Struct)
71 }
72
73 fn main() {
74
75     // In order to avoid endianness trouble all of the following test values consist of a single
76     // repeated byte. This way each interpretation of the union should look the same, no matter if
77     // this is a big or little endian machine.
78
79     // 0b0111110001111100011111000111110001111100011111000111110001111100 = 8970181431921507452
80     // 0b01111100011111000111110001111100 = 2088533116
81     // 0b0111110001111100 = 31868
82     // 0b01111100 = 124
83     let case1 = Case1(0, Struct { x: 2088533116, y: 2088533116, z: 31868 });
84
85     // 0b0001000100010001000100010001000100010001000100010001000100010001 = 1229782938247303441
86     // 0b00010001000100010001000100010001 = 286331153
87     // 0b0001000100010001 = 4369
88     // 0b00010001 = 17
89     let case2 = Case2(0, 1229782938247303441, 4369);
90
91     let univariant = TheOnlyCase(Struct { x: 123, y: 456, z: 789 });
92
93     zzz(); // #break
94 }
95
96 fn zzz() {()}