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` ```
33 lines
716 B
Rust
33 lines
716 B
Rust
// == Test [gdb|lldb]-[command|check] are parsed correctly ===
|
|
//@ should-fail
|
|
//@ needs-run-enabled
|
|
//@ compile-flags:-g
|
|
|
|
// === GDB TESTS ===================================================================================
|
|
|
|
//@ gdb-command: run
|
|
|
|
//@ gdb-command: print x
|
|
//@ gdb-check:$1 = 5
|
|
|
|
// === LLDB TESTS ==================================================================================
|
|
|
|
//@ lldb-command:run
|
|
|
|
//@ lldb-command:v x
|
|
//@ lldb-check:[...] 5
|
|
|
|
// === CDB TESTS ==================================================================================
|
|
|
|
//@ cdb-command:g
|
|
|
|
//@ cdb-command:dx x
|
|
//@ cdb-check:string [...] : 5 [Type: [...]]
|
|
|
|
fn main() {
|
|
let x = 1;
|
|
|
|
zzz(); // #break
|
|
}
|
|
|
|
fn zzz() {()}
|