2014-10-09 14:31:03 +00:00
|
|
|
//@ ignore-lldb
|
2015-03-25 09:17:33 +00:00
|
|
|
//@ ignore-aarch64
|
2014-04-16 10:22:38 +00:00
|
|
|
|
|
|
|
//@ compile-flags:-g
|
2014-10-29 06:13:29 +00:00
|
|
|
|
2014-04-24 09:35:48 +00:00
|
|
|
// gdb-command:run
|
|
|
|
// gdb-command:next
|
2024-08-11 18:25:00 +00:00
|
|
|
// gdb-check:[...]23[...]let s = Some(5).unwrap(); // #break
|
2014-04-24 09:35:48 +00:00
|
|
|
// gdb-command:continue
|
2014-04-16 10:22:38 +00:00
|
|
|
|
2015-09-19 20:33:47 +00:00
|
|
|
#![feature(omit_gdb_pretty_printer_section)]
|
2014-12-03 22:48:18 +00:00
|
|
|
#![omit_gdb_pretty_printer_section]
|
|
|
|
|
2014-04-16 10:22:38 +00:00
|
|
|
// IF YOU MODIFY THIS FILE, BE CAREFUL TO ADAPT THE LINE NUMBERS IN THE DEBUGGER COMMANDS
|
|
|
|
|
|
|
|
// This test makes sure that gdb does not set unwanted breakpoints in inlined functions. If a
|
2014-10-29 06:13:29 +00:00
|
|
|
// breakpoint existed in unwrap(), then calling `next` would (when stopped at `let s = ...`) stop
|
2014-04-16 10:22:38 +00:00
|
|
|
// in unwrap() instead of stepping over the function invocation. By making sure that `s` is
|
|
|
|
// contained in the output, after calling `next` just once, we can be sure that we did not stop in
|
|
|
|
// unwrap(). (The testing framework doesn't allow for checking that some text is *not* contained in
|
|
|
|
// the output, which is why we have to make the test in this kind of roundabout way)
|
2015-03-26 00:06:52 +00:00
|
|
|
fn bar() -> isize {
|
2014-10-29 06:13:29 +00:00
|
|
|
let s = Some(5).unwrap(); // #break
|
2014-04-16 10:22:38 +00:00
|
|
|
s
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let _ = bar();
|
|
|
|
}
|