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