2014-10-09 14:31:03 +00:00
|
|
|
// min-lldb-version: 310
|
2013-12-13 23:45:08 +00:00
|
|
|
|
2014-02-07 03:57:09 +00:00
|
|
|
// compile-flags:-g
|
2014-07-09 12:46:09 +00:00
|
|
|
|
|
|
|
// === GDB TESTS ===================================================================================
|
|
|
|
|
2014-04-24 09:35:48 +00:00
|
|
|
// gdb-command:run
|
2013-06-26 14:00:42 +00:00
|
|
|
|
2019-09-01 03:00:08 +00:00
|
|
|
// gdb-command:print *boxed_with_padding
|
2016-10-25 21:32:04 +00:00
|
|
|
// gdbg-check:$1 = {x = 99, y = 999, z = 9999, w = 99999}
|
|
|
|
// gdbr-check:$1 = boxed_struct::StructWithSomePadding {x: 99, y: 999, z: 9999, w: 99999}
|
2013-06-26 14:00:42 +00:00
|
|
|
|
2019-09-01 03:00:08 +00:00
|
|
|
// gdb-command:print *boxed_with_dtor
|
2016-10-25 21:32:04 +00:00
|
|
|
// gdbg-check:$2 = {x = 77, y = 777, z = 7777, w = 77777}
|
|
|
|
// gdbr-check:$2 = boxed_struct::StructWithDestructor {x: 77, y: 777, z: 7777, w: 77777}
|
2013-06-26 14:00:42 +00:00
|
|
|
|
2014-07-09 12:46:09 +00:00
|
|
|
|
|
|
|
// === LLDB TESTS ==================================================================================
|
|
|
|
|
|
|
|
// lldb-command:run
|
|
|
|
|
2019-09-01 03:00:08 +00:00
|
|
|
// lldb-command:print *boxed_with_padding
|
2019-05-14 12:50:58 +00:00
|
|
|
// lldbg-check:[...]$0 = { x = 99 y = 999 z = 9999 w = 99999 }
|
|
|
|
// lldbr-check:(boxed_struct::StructWithSomePadding) *boxed_with_padding = { x = 99 y = 999 z = 9999 w = 99999 }
|
2014-07-09 12:46:09 +00:00
|
|
|
|
2019-09-01 03:00:08 +00:00
|
|
|
// lldb-command:print *boxed_with_dtor
|
2019-05-14 12:50:58 +00:00
|
|
|
// lldbg-check:[...]$1 = { x = 77 y = 777 z = 7777 w = 77777 }
|
|
|
|
// lldbr-check:(boxed_struct::StructWithDestructor) *boxed_with_dtor = { x = 77 y = 777 z = 7777 w = 77777 }
|
2014-07-09 12:46:09 +00:00
|
|
|
|
2014-10-27 22:37:07 +00:00
|
|
|
#![allow(unused_variables)]
|
2015-09-19 20:33:47 +00:00
|
|
|
#![feature(omit_gdb_pretty_printer_section)]
|
2014-12-03 22:48:18 +00:00
|
|
|
#![omit_gdb_pretty_printer_section]
|
2013-08-17 15:37:42 +00:00
|
|
|
|
2013-06-26 14:00:42 +00:00
|
|
|
struct StructWithSomePadding {
|
|
|
|
x: i16,
|
|
|
|
y: i32,
|
|
|
|
z: i32,
|
|
|
|
w: i64
|
|
|
|
}
|
|
|
|
|
|
|
|
struct StructWithDestructor {
|
|
|
|
x: i16,
|
|
|
|
y: i32,
|
|
|
|
z: i32,
|
|
|
|
w: i64
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for StructWithDestructor {
|
2013-09-17 01:18:07 +00:00
|
|
|
fn drop(&mut self) {}
|
2013-06-26 14:00:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
2021-08-25 00:39:40 +00:00
|
|
|
let boxed_with_padding: Box<_> = Box::new(StructWithSomePadding {
|
|
|
|
x: 99,
|
|
|
|
y: 999,
|
|
|
|
z: 9999,
|
|
|
|
w: 99999,
|
|
|
|
});
|
|
|
|
|
|
|
|
let boxed_with_dtor: Box<_> = Box::new(StructWithDestructor {
|
|
|
|
x: 77,
|
|
|
|
y: 777,
|
|
|
|
z: 7777,
|
|
|
|
w: 77777,
|
|
|
|
});
|
2014-07-09 12:46:09 +00:00
|
|
|
zzz(); // #break
|
2013-06-26 14:00:42 +00:00
|
|
|
}
|
|
|
|
|
2014-07-09 12:46:09 +00:00
|
|
|
fn zzz() { () }
|