rust/src/test/debuginfo/should-fail.rs
Tyler Mandry f64c45a7d2 Add needs-run-enabled directive for should-fail tests
I was wary of doing any automatic disabling here, since should-fail
is how we test compiletest itself.
2021-04-30 04:12:37 +00:00

35 lines
738 B
Rust

// min-lldb-version: 310
// == 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:print x
// lldb-check:[...]$0 = 5
// === CDB TESTS ==================================================================================
// cdb-command:g
// cdb-command:dx x
// cdb-check:string [...] : 5 [Type: [...]]
fn main() {
let x = 1;
zzz(); // #break
}
fn zzz() {()}