2014-10-09 09:31:03 -05:00
// min-lldb-version: 310
2013-12-13 17:45:08 -06:00
2014-02-06 21:57:09 -06:00
// compile-flags:-g
2014-07-09 07:46:09 -05:00
// === GDB TESTS ===================================================================================
2014-04-24 04:35:48 -05:00
// gdb-command:run
2013-07-02 03:33:51 -05:00
2014-04-24 04:35:48 -05:00
// gdb-command:print tuple_interior_padding
2016-10-25 16:32:04 -05:00
// gdbg-check:$1 = {__0 = 0, __1 = OneHundred}
// gdbr-check:$1 = (0, c_style_enum_in_composite::AnEnum::OneHundred)
2013-07-02 03:33:51 -05:00
2014-04-24 04:35:48 -05:00
// gdb-command:print tuple_padding_at_end
2016-10-25 16:32:04 -05:00
// gdbg-check:$2 = {__0 = {__0 = 1, __1 = OneThousand}, __1 = 2}
// gdbr-check:$2 = ((1, c_style_enum_in_composite::AnEnum::OneThousand), 2)
2013-07-02 03:33:51 -05:00
2014-04-24 04:35:48 -05:00
// gdb-command:print tuple_different_enums
2016-10-25 16:32:04 -05:00
// gdbg-check:$3 = {__0 = OneThousand, __1 = MountainView, __2 = OneMillion, __3 = Vienna}
// gdbr-check:$3 = (c_style_enum_in_composite::AnEnum::OneThousand, c_style_enum_in_composite::AnotherEnum::MountainView, c_style_enum_in_composite::AnEnum::OneMillion, c_style_enum_in_composite::AnotherEnum::Vienna)
2013-07-02 03:33:51 -05:00
2014-04-24 04:35:48 -05:00
// gdb-command:print padded_struct
2016-10-25 16:32:04 -05:00
// gdbg-check:$4 = {a = 3, b = OneMillion, c = 4, d = Toronto, e = 5}
// gdbr-check:$4 = c_style_enum_in_composite::PaddedStruct {a: 3, b: c_style_enum_in_composite::AnEnum::OneMillion, c: 4, d: c_style_enum_in_composite::AnotherEnum::Toronto, e: 5}
2013-07-02 03:33:51 -05:00
2014-04-24 04:35:48 -05:00
// gdb-command:print packed_struct
2016-10-25 16:32:04 -05:00
// gdbg-check:$5 = {a = 6, b = OneHundred, c = 7, d = Vienna, e = 8}
// gdbr-check:$5 = c_style_enum_in_composite::PackedStruct {a: 6, b: c_style_enum_in_composite::AnEnum::OneHundred, c: 7, d: c_style_enum_in_composite::AnotherEnum::Vienna, e: 8}
2013-07-02 03:33:51 -05:00
2014-04-24 04:35:48 -05:00
// gdb-command:print non_padded_struct
2016-10-25 16:32:04 -05:00
// gdbg-check:$6 = {a = OneMillion, b = MountainView, c = OneThousand, d = Toronto}
// gdbr-check:$6 = c_style_enum_in_composite::NonPaddedStruct {a: c_style_enum_in_composite::AnEnum::OneMillion, b: c_style_enum_in_composite::AnotherEnum::MountainView, c: c_style_enum_in_composite::AnEnum::OneThousand, d: c_style_enum_in_composite::AnotherEnum::Toronto}
2013-07-02 03:33:51 -05:00
2014-04-24 04:35:48 -05:00
// gdb-command:print struct_with_drop
2016-10-25 16:32:04 -05:00
// gdbg-check:$7 = {__0 = {a = OneHundred, b = Vienna}, __1 = 9}
// gdbr-check:$7 = (c_style_enum_in_composite::StructWithDrop {a: c_style_enum_in_composite::AnEnum::OneHundred, b: c_style_enum_in_composite::AnotherEnum::Vienna}, 9)
2014-07-09 07:46:09 -05:00
// === LLDB TESTS ==================================================================================
// lldb-command:run
// lldb-command:print tuple_interior_padding
2019-05-14 07:50:58 -05:00
// lldbg-check:[...]$0 = { 0 = 0 1 = OneHundred }
// lldbr-check:((i16, c_style_enum_in_composite::AnEnum)) tuple_interior_padding = { 0 = 0 1 = OneHundred }
2014-07-09 07:46:09 -05:00
// lldb-command:print tuple_padding_at_end
2019-05-14 07:50:58 -05:00
// lldbg-check:[...]$1 = { 0 = { 0 = 1 1 = OneThousand } 1 = 2 }
// lldbr-check:(((u64, c_style_enum_in_composite::AnEnum), u64)) tuple_padding_at_end = { 0 = { 0 = 1 1 = OneThousand } 1 = 2 }
2014-07-09 07:46:09 -05:00
// lldb-command:print tuple_different_enums
2019-05-14 07:50:58 -05:00
// lldbg-check:[...]$2 = { 0 = OneThousand 1 = MountainView 2 = OneMillion 3 = Vienna }
// lldbr-check:((c_style_enum_in_composite::AnEnum, c_style_enum_in_composite::AnotherEnum, c_style_enum_in_composite::AnEnum, c_style_enum_in_composite::AnotherEnum)) tuple_different_enums = { 0 = c_style_enum_in_composite::AnEnum::OneThousand 1 = c_style_enum_in_composite::AnotherEnum::MountainView 2 = c_style_enum_in_composite::AnEnum::OneMillion 3 = c_style_enum_in_composite::AnotherEnum::Vienna }
2014-07-09 07:46:09 -05:00
// lldb-command:print padded_struct
2019-05-14 07:50:58 -05:00
// lldbg-check:[...]$3 = { a = 3 b = OneMillion c = 4 d = Toronto e = 5 }
// lldbr-check:(c_style_enum_in_composite::PaddedStruct) padded_struct = { a = 3 b = c_style_enum_in_composite::AnEnum::OneMillion c = 4 d = Toronto e = 5 }
2014-07-09 07:46:09 -05:00
// lldb-command:print packed_struct
2019-05-14 07:50:58 -05:00
// lldbg-check:[...]$4 = { a = 6 b = OneHundred c = 7 d = Vienna e = 8 }
// lldbr-check:(c_style_enum_in_composite::PackedStruct) packed_struct = { a = 6 b = c_style_enum_in_composite::AnEnum::OneHundred c = 7 d = Vienna e = 8 }
2014-07-09 07:46:09 -05:00
// lldb-command:print non_padded_struct
2019-05-14 07:50:58 -05:00
// lldbg-check:[...]$5 = { a = OneMillion b = MountainView c = OneThousand d = Toronto }
// lldbr-check:(c_style_enum_in_composite::NonPaddedStruct) non_padded_struct = { a = c_style_enum_in_composite::AnEnum::OneMillion, b = c_style_enum_in_composite::AnotherEnum::MountainView, c = c_style_enum_in_composite::AnEnum::OneThousand, d = c_style_enum_in_composite::AnotherEnum::Toronto }
2014-07-09 07:46:09 -05:00
// lldb-command:print struct_with_drop
2019-05-14 07:50:58 -05:00
// lldbg-check:[...]$6 = { 0 = { a = OneHundred b = Vienna } 1 = 9 }
// lldbr-check:((c_style_enum_in_composite::StructWithDrop, i64)) struct_with_drop = { 0 = { a = c_style_enum_in_composite::AnEnum::OneHundred b = c_style_enum_in_composite::AnotherEnum::Vienna } 1 = 9 }
2014-07-09 07:46:09 -05:00
2014-10-27 17:37:07 -05:00
#![ allow(unused_variables) ]
2015-09-19 15:33:47 -05:00
#![ feature(omit_gdb_pretty_printer_section) ]
2014-12-03 16:48:18 -06:00
#![ omit_gdb_pretty_printer_section ]
2013-08-17 10:37:42 -05:00
2014-11-06 02:05:53 -06:00
use self ::AnEnum ::{ OneHundred , OneThousand , OneMillion } ;
use self ::AnotherEnum ::{ MountainView , Toronto , Vienna } ;
2013-07-02 03:33:51 -05:00
enum AnEnum {
OneHundred = 100 ,
OneThousand = 1000 ,
OneMillion = 1000000
}
enum AnotherEnum {
MountainView ,
Toronto ,
Vienna
}
struct PaddedStruct {
a : i16 ,
b : AnEnum ,
c : i16 ,
d : AnotherEnum ,
e : i16
}
2014-05-27 01:56:52 -05:00
#[ repr(packed) ]
2013-07-02 03:33:51 -05:00
struct PackedStruct {
a : i16 ,
b : AnEnum ,
c : i16 ,
d : AnotherEnum ,
e : i16
}
struct NonPaddedStruct {
a : AnEnum ,
b : AnotherEnum ,
c : AnEnum ,
d : AnotherEnum
}
struct StructWithDrop {
a : AnEnum ,
b : AnotherEnum
}
impl Drop for StructWithDrop {
2013-09-16 20:18:07 -05:00
fn drop ( & mut self ) { ( ) }
2013-07-02 03:33:51 -05:00
}
fn main ( ) {
let tuple_interior_padding = ( 0_ i16 , OneHundred ) ;
// It will depend on the machine architecture if any padding is actually involved here
let tuple_padding_at_end = ( ( 1_ u64 , OneThousand ) , 2_ u64 ) ;
let tuple_different_enums = ( OneThousand , MountainView , OneMillion , Vienna ) ;
let padded_struct = PaddedStruct {
a : 3 ,
b : OneMillion ,
c : 4 ,
d : Toronto ,
e : 5
} ;
let packed_struct = PackedStruct {
a : 6 ,
b : OneHundred ,
c : 7 ,
d : Vienna ,
e : 8
} ;
let non_padded_struct = NonPaddedStruct {
a : OneMillion ,
b : MountainView ,
c : OneThousand ,
d : Toronto
} ;
let struct_with_drop = ( StructWithDrop { a : OneHundred , b : Vienna } , 9_ i64 ) ;
2014-07-09 07:46:09 -05:00
zzz ( ) ; // #break
2013-07-02 03:33:51 -05:00
}
2014-07-09 07:46:09 -05:00
fn zzz ( ) { ( ) }