]> git.lizzy.rs Git - rust.git/blob - src/test/debuginfo/issue12886.rs
rollup merge of #20350: fhahn/issue-20340-rustdoc-version
[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-android: FIXME(#10381)
12 // ignore-windows failing on 64-bit bots FIXME #17638
13 // ignore-lldb
14
15 // compile-flags:-g
16
17 // gdb-command:run
18 // gdb-command:next
19 // gdb-check:[...]34[...]s
20 // gdb-command:continue
21
22 #![omit_gdb_pretty_printer_section]
23
24 // IF YOU MODIFY THIS FILE, BE CAREFUL TO ADAPT THE LINE NUMBERS IN THE DEBUGGER COMMANDS
25
26 // This test makes sure that gdb does not set unwanted breakpoints in inlined functions. If a
27 // breakpoint existed in unwrap(), then calling `next` would (when stopped at `let s = ...`) stop
28 // in unwrap() instead of stepping over the function invocation. By making sure that `s` is
29 // contained in the output, after calling `next` just once, we can be sure that we did not stop in
30 // unwrap(). (The testing framework doesn't allow for checking that some text is *not* contained in
31 // the output, which is why we have to make the test in this kind of roundabout way)
32 fn bar() -> int {
33     let s = Some(5).unwrap(); // #break
34     s
35 }
36
37 fn main() {
38     let _ = bar();
39 }