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-06-25 14:53:15 -05:00
|
|
|
|
2014-04-24 04:35:48 -05:00
|
|
|
// gdb-command:print *stack_val_ref
|
2024-08-17 16:31:49 -05:00
|
|
|
// gdb-check:$1 = borrowed_struct::SomeStruct {x: 10, y: 23.5}
|
2013-06-25 14:53:15 -05:00
|
|
|
|
2014-04-24 04:35:48 -05:00
|
|
|
// gdb-command:print *stack_val_interior_ref_1
|
|
|
|
// gdb-check:$2 = 10
|
2013-06-25 14:53:15 -05:00
|
|
|
|
2014-04-24 04:35:48 -05:00
|
|
|
// gdb-command:print *stack_val_interior_ref_2
|
|
|
|
// gdb-check:$3 = 23.5
|
2013-06-25 14:53:15 -05:00
|
|
|
|
2014-04-24 04:35:48 -05:00
|
|
|
// gdb-command:print *ref_to_unnamed
|
2024-08-17 16:31:49 -05:00
|
|
|
// gdb-check:$4 = borrowed_struct::SomeStruct {x: 11, y: 24.5}
|
2013-06-25 14:53:15 -05:00
|
|
|
|
2014-04-24 04:35:48 -05:00
|
|
|
// gdb-command:print *unique_val_ref
|
2024-08-17 16:31:49 -05:00
|
|
|
// gdb-check:$5 = borrowed_struct::SomeStruct {x: 13, y: 26.5}
|
2013-06-25 14:53:15 -05:00
|
|
|
|
2014-04-24 04:35:48 -05:00
|
|
|
// gdb-command:print *unique_val_interior_ref_1
|
2014-10-02 17:12:58 -05:00
|
|
|
// gdb-check:$6 = 13
|
2013-06-25 14:53:15 -05:00
|
|
|
|
2014-04-24 04:35:48 -05:00
|
|
|
// gdb-command:print *unique_val_interior_ref_2
|
2014-10-02 17:12:58 -05:00
|
|
|
// gdb-check:$7 = 26.5
|
2013-06-25 14:53:15 -05:00
|
|
|
|
2014-07-09 07:46:09 -05:00
|
|
|
|
|
|
|
// === LLDB TESTS ==================================================================================
|
|
|
|
|
|
|
|
// lldb-command:run
|
|
|
|
|
2024-03-15 09:05:57 -05:00
|
|
|
// lldb-command:v *stack_val_ref
|
2024-08-18 16:00:33 -05:00
|
|
|
// lldb-check:[...] { x = 10 y = 23.5 }
|
2014-07-09 07:46:09 -05:00
|
|
|
|
2024-03-15 09:05:57 -05:00
|
|
|
// lldb-command:v *stack_val_interior_ref_1
|
2024-08-18 16:00:33 -05:00
|
|
|
// lldb-check:[...] 10
|
2014-07-09 07:46:09 -05:00
|
|
|
|
2024-03-15 09:05:57 -05:00
|
|
|
// lldb-command:v *stack_val_interior_ref_2
|
2024-08-18 16:00:33 -05:00
|
|
|
// lldb-check:[...] 23.5
|
2014-07-09 07:46:09 -05:00
|
|
|
|
2024-03-15 09:05:57 -05:00
|
|
|
// lldb-command:v *ref_to_unnamed
|
2024-08-18 16:00:33 -05:00
|
|
|
// lldb-check:[...] { x = 11 y = 24.5 }
|
2014-07-09 07:46:09 -05:00
|
|
|
|
2024-03-15 09:05:57 -05:00
|
|
|
// lldb-command:v *unique_val_ref
|
2024-08-18 16:00:33 -05:00
|
|
|
// lldb-check:[...] { x = 13 y = 26.5 }
|
2014-07-09 07:46:09 -05:00
|
|
|
|
2024-03-15 09:05:57 -05:00
|
|
|
// lldb-command:v *unique_val_interior_ref_1
|
2024-08-18 16:00:33 -05:00
|
|
|
// lldb-check:[...] 13
|
2014-07-09 07:46:09 -05:00
|
|
|
|
2024-03-15 09:05:57 -05:00
|
|
|
// lldb-command:v *unique_val_interior_ref_2
|
2024-08-18 16:00:33 -05:00
|
|
|
// lldb-check:[...] 26.5
|
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-06-25 14:53:15 -05:00
|
|
|
|
|
|
|
struct SomeStruct {
|
2015-03-25 19:06:52 -05:00
|
|
|
x: isize,
|
2013-06-25 14:53:15 -05:00
|
|
|
y: f64
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let stack_val: SomeStruct = SomeStruct { x: 10, y: 23.5 };
|
2013-07-16 05:17:55 -05:00
|
|
|
let stack_val_ref: &SomeStruct = &stack_val;
|
2015-03-25 19:06:52 -05:00
|
|
|
let stack_val_interior_ref_1: &isize = &stack_val.x;
|
2013-07-16 05:17:55 -05:00
|
|
|
let stack_val_interior_ref_2: &f64 = &stack_val.y;
|
|
|
|
let ref_to_unnamed: &SomeStruct = &SomeStruct { x: 11, y: 24.5 };
|
2013-06-25 14:53:15 -05:00
|
|
|
|
2021-08-24 19:39:40 -05:00
|
|
|
let unique_val: Box<_> = Box::new(SomeStruct { x: 13, y: 26.5 });
|
2014-07-07 18:35:15 -05:00
|
|
|
let unique_val_ref: &SomeStruct = &*unique_val;
|
2015-03-25 19:06:52 -05:00
|
|
|
let unique_val_interior_ref_1: &isize = &unique_val.x;
|
2013-07-16 05:17:55 -05:00
|
|
|
let unique_val_interior_ref_2: &f64 = &unique_val.y;
|
2013-06-25 14:53:15 -05:00
|
|
|
|
2014-07-09 07:46:09 -05:00
|
|
|
zzz(); // #break
|
2013-06-25 14:53:15 -05:00
|
|
|
}
|
|
|
|
|
2013-08-17 10:37:42 -05:00
|
|
|
fn zzz() {()}
|