rust/tests/debuginfo/gdb-pretty-struct-and-enums.rs
Martin Nordholts 5b57d02e9f compiletest: Use //@ prefixes also for debuginfo test directives
So that when we later add support for revisions we can use the same
syntax for revisions as elsewhere.

This also prevents people from making typos for commands since
`src/tools/compiletest/src/directives/directive_names.rs` will catch such
typos now.

Note that we one FIXME for a non-trivial change for later:
```
// FIXME(148097): Change `// cdb-checksimple_closure` to `//@ cdb-check:simple_closure`
```
2025-11-25 06:13:45 +01:00

57 lines
1.3 KiB
Rust

//@ ignore-lldb
//@ ignore-android: FIXME(#10381)
//@ compile-flags:-g
//@ ignore-backends: gcc
//@ gdb-command: run
//@ gdb-command: print regular_struct
//@ gdb-check:$1 = gdb_pretty_struct_and_enums::RegularStruct {the_first_field: 101, the_second_field: 102.5, the_third_field: false}
//@ gdb-command: print empty_struct
//@ gdb-check:$2 = gdb_pretty_struct_and_enums::EmptyStruct
//@ gdb-command: print c_style_enum1
//@ gdb-check:$3 = gdb_pretty_struct_and_enums::CStyleEnum::CStyleEnumVar1
//@ gdb-command: print c_style_enum2
//@ gdb-check:$4 = gdb_pretty_struct_and_enums::CStyleEnum::CStyleEnumVar2
//@ gdb-command: print c_style_enum3
//@ gdb-check:$5 = gdb_pretty_struct_and_enums::CStyleEnum::CStyleEnumVar3
#![allow(dead_code, unused_variables)]
struct RegularStruct {
the_first_field: isize,
the_second_field: f64,
the_third_field: bool,
}
struct EmptyStruct;
enum CStyleEnum {
CStyleEnumVar1,
CStyleEnumVar2,
CStyleEnumVar3,
}
fn main() {
let regular_struct = RegularStruct {
the_first_field: 101,
the_second_field: 102.5,
the_third_field: false
};
let empty_struct = EmptyStruct;
let c_style_enum1 = CStyleEnum::CStyleEnumVar1;
let c_style_enum2 = CStyleEnum::CStyleEnumVar2;
let c_style_enum3 = CStyleEnum::CStyleEnumVar3;
zzz(); // #break
}
fn zzz() { () }