rust/tests/debuginfo/vec-slices.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

109 lines
2.9 KiB
Rust
Raw Permalink Normal View History

//@ ignore-gdb-version: 15.0 - 99.0
// ^ test temporarily disabled as it fails under gdb 15
//@ compile-flags:-g
// === GDB TESTS ===================================================================================
// gdb-command:run
// gdb-command:print empty.length
// gdb-check:$1 = 0
// gdb-command:print singleton.length
// gdb-check:$2 = 1
2024-08-18 05:31:49 +08:00
// gdb-command:print *(singleton.data_ptr as *const [i64; 1])
// gdb-check:$3 = [1]
// gdb-command:print multiple.length
// gdb-check:$4 = 4
2024-08-18 05:31:49 +08:00
// gdb-command:print *(multiple.data_ptr as *const [i64; 4])
// gdb-check:$5 = [2, 3, 4, 5]
// gdb-command:print slice_of_slice.length
// gdb-check:$6 = 2
2024-08-18 05:31:49 +08:00
// gdb-command:print *(slice_of_slice.data_ptr as *const [i64; 2])
// gdb-check:$7 = [3, 4]
// gdb-command:print padded_tuple.length
// gdb-check:$8 = 2
// gdb-command:print padded_tuple.data_ptr[0]
2024-08-18 05:31:49 +08:00
// gdb-check:$9 = (6, 7)
// gdb-command:print padded_tuple.data_ptr[1]
2024-08-18 05:31:49 +08:00
// gdb-check:$10 = (8, 9)
// gdb-command:print padded_struct.length
// gdb-check:$11 = 2
// gdb-command:print padded_struct.data_ptr[0]
2024-08-18 05:31:49 +08:00
// gdb-check:$12 = vec_slices::AStruct {x: 10, y: 11, z: 12}
// gdb-command:print padded_struct.data_ptr[1]
2024-08-18 05:31:49 +08:00
// gdb-check:$13 = vec_slices::AStruct {x: 13, y: 14, z: 15}
2022-01-18 00:31:13 +08:00
// gdb-command:print mut_slice.length
// gdb-check:$14 = 5
2024-08-18 05:31:49 +08:00
// gdb-command:print *(mut_slice.data_ptr as *const [i64; 5])
// gdb-check:$15 = [1, 2, 3, 4, 5]
2016-06-29 22:34:06 +08:00
2024-08-18 05:31:49 +08:00
// gdb-command:print MUT_VECT_SLICE.length
// gdb-check:$16 = 2
// gdb-command:print *(MUT_VECT_SLICE.data_ptr as *const [i64; 2])
// gdb-check:$17 = [64, 65]
// === LLDB TESTS ==================================================================================
// lldb-command:run
// lldb-command:v empty
2024-08-19 05:00:33 +08:00
// lldb-check:[...] size=0
// lldb-command:v singleton
2024-08-19 05:00:33 +08:00
// lldb-check:[...] size=1 { [0] = 1 }
// lldb-command:v multiple
2024-08-19 05:00:33 +08:00
// lldb-check:[...] size=4 { [0] = 2 [1] = 3 [2] = 4 [3] = 5 }
// lldb-command:v slice_of_slice
2024-08-19 05:00:33 +08:00
// lldb-check:[...] size=2 { [0] = 3 [1] = 4 }
// lldb-command:v padded_tuple
2024-08-19 05:00:33 +08:00
// lldb-check:[...] size=2 { [0] = { 0 = 6 1 = 7 } [1] = { 0 = 8 1 = 9 } }
// lldb-command:v padded_struct
2024-08-19 05:00:33 +08:00
// lldb-check:[...] size=2 { [0] = { x = 10 y = 11 z = 12 } [1] = { x = 13 y = 14 z = 15 } }
2015-04-22 12:53:07 +08:00
#![allow(dead_code, unused_variables)]
#![feature(omit_gdb_pretty_printer_section)]
#![omit_gdb_pretty_printer_section]
struct AStruct {
x: i16,
y: i32,
z: i16,
}
static VECT_SLICE: &'static [i64] = &[64, 65];
static mut MUT_VECT_SLICE: &'static [i64] = &[32];
fn main() {
let empty: &[i64] = &[];
let singleton: &[i64] = &[1];
let multiple: &[i64] = &[2, 3, 4, 5];
2015-01-03 08:34:13 +08:00
let slice_of_slice = &multiple[1..3];
let padded_tuple: &[(i32, i16)] = &[(6, 7), (8, 9)];
let padded_struct: &[AStruct] =
&[AStruct { x: 10, y: 11, z: 12 }, AStruct { x: 13, y: 14, z: 15 }];
unsafe {
MUT_VECT_SLICE = VECT_SLICE;
}
2016-06-29 22:34:06 +08:00
let mut_slice: &mut [i64] = &mut [1, 2, 3, 4, 5];
zzz(); // #break
}
fn zzz() {
()
}