]> git.lizzy.rs Git - rust.git/blob - src/test/debuginfo/issue12886.rs
Auto merge of #28816 - petrochenkov:unistruct, r=nrc
[rust.git] / src / test / debuginfo / issue12886.rs
1 // Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // ignore-windows failing on 64-bit bots FIXME #17638
12 // ignore-lldb
13 // ignore-aarch64
14
15 // compile-flags:-g
16
17 // gdb-command:run
18 // gdb-command:next
19 // gdb-check:[...]35[...]s
20 // gdb-command:continue
21
22 #![feature(omit_gdb_pretty_printer_section)]
23 #![omit_gdb_pretty_printer_section]
24
25 // IF YOU MODIFY THIS FILE, BE CAREFUL TO ADAPT THE LINE NUMBERS IN THE DEBUGGER COMMANDS
26
27 // This test makes sure that gdb does not set unwanted breakpoints in inlined functions. If a
28 // breakpoint existed in unwrap(), then calling `next` would (when stopped at `let s = ...`) stop
29 // in unwrap() instead of stepping over the function invocation. By making sure that `s` is
30 // contained in the output, after calling `next` just once, we can be sure that we did not stop in
31 // unwrap(). (The testing framework doesn't allow for checking that some text is *not* contained in
32 // the output, which is why we have to make the test in this kind of roundabout way)
33 fn bar() -> isize {
34     let s = Some(5).unwrap(); // #break
35     s
36 }
37
38 fn main() {
39     let _ = bar();
40 }