mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
34 lines
707 B
Rust
34 lines
707 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() {()}
|