]> git.lizzy.rs Git - rust.git/blob - src/test/debuginfo/tuple-style-enum.rs
Improve some compiletest documentation
[rust.git] / src / test / debuginfo / tuple-style-enum.rs
1 // ignore-tidy-linelength
2
3 // Require LLVM with DW_TAG_variant_part and a gdb and lldb that can
4 // read it.
5 // min-system-llvm-version: 7.0
6 // min-gdb-version: 8.2
7 // rust-lldb
8
9 // compile-flags:-g
10
11 // === GDB TESTS ===================================================================================
12
13 // gdb-command:set print union on
14 // gdb-command:run
15
16 // gdb-command:print case1
17 // gdbr-check:$1 = tuple_style_enum::Regular::Case1(0, 31868, 31868, 31868, 31868)
18
19 // gdb-command:print case2
20 // gdbr-check:$2 = tuple_style_enum::Regular::Case2(0, 286331153, 286331153)
21
22 // gdb-command:print case3
23 // gdbr-check:$3 = tuple_style_enum::Regular::Case3(0, 6438275382588823897)
24
25 // gdb-command:print univariant
26 // gdbr-check:$4 = tuple_style_enum::Univariant::TheOnlyCase(-1)
27
28
29 // === LLDB TESTS ==================================================================================
30
31 // lldb-command:run
32
33 // lldb-command:print case1
34 // lldbr-check:(tuple_style_enum::Regular::Case1) case1 = { = 0 = 31868 = 31868 = 31868 = 31868 }
35
36 // lldb-command:print case2
37 // lldbr-check:(tuple_style_enum::Regular::Case2) case2 = Case2 { Case1: 0, Case2: 286331153, Case3: 286331153 }
38
39 // lldb-command:print case3
40 // lldbr-check:(tuple_style_enum::Regular::Case3) case3 = Case3 { Case1: 0, Case2: 6438275382588823897 }
41
42 // lldb-command:print univariant
43 // lldbr-check:(tuple_style_enum::Univariant) univariant = { TheOnlyCase = { = -1 } }
44
45 #![allow(unused_variables)]
46 #![feature(omit_gdb_pretty_printer_section)]
47 #![omit_gdb_pretty_printer_section]
48
49 use self::Regular::{Case1, Case2, Case3};
50 use self::Univariant::TheOnlyCase;
51
52 // The first element is to ensure proper alignment, irrespective of the machines word size. Since
53 // the size of the discriminant value is machine dependent, this has be taken into account when
54 // datatype layout should be predictable as in this case.
55 enum Regular {
56     Case1(u64, u16, u16, u16, u16),
57     Case2(u64, u32, u32),
58     Case3(u64, u64)
59 }
60
61 enum Univariant {
62     TheOnlyCase(i64)
63 }
64
65 fn main() {
66
67     // In order to avoid endianness trouble all of the following test values consist of a single
68     // repeated byte. This way each interpretation of the union should look the same, no matter if
69     // this is a big or little endian machine.
70
71     // 0b0111110001111100011111000111110001111100011111000111110001111100 = 8970181431921507452
72     // 0b01111100011111000111110001111100 = 2088533116
73     // 0b0111110001111100 = 31868
74     // 0b01111100 = 124
75     let case1 = Case1(0, 31868, 31868, 31868, 31868);
76
77     // 0b0001000100010001000100010001000100010001000100010001000100010001 = 1229782938247303441
78     // 0b00010001000100010001000100010001 = 286331153
79     // 0b0001000100010001 = 4369
80     // 0b00010001 = 17
81     let case2 = Case2(0, 286331153, 286331153);
82
83     // 0b0101100101011001010110010101100101011001010110010101100101011001 = 6438275382588823897
84     // 0b01011001010110010101100101011001 = 1499027801
85     // 0b0101100101011001 = 22873
86     // 0b01011001 = 89
87     let case3 = Case3(0, 6438275382588823897);
88
89     let univariant = TheOnlyCase(-1);
90
91     zzz(); // #break
92 }
93
94 fn zzz() {()}