]> git.proxmox.com Git - rustc.git/blob - src/test/debuginfo/limited-debuginfo.rs
Merge tag 'upstream/1.5.0+dfsg1'
[rustc.git] / src / test / debuginfo / limited-debuginfo.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
12 // ignore-lldb
13
14 // compile-flags:-C debuginfo=1
15
16 // Make sure functions have proper names
17 // gdb-command:info functions
18 // gdb-check:[...]void[...]main([...]);
19 // gdb-check:[...]void[...]some_function([...]);
20 // gdb-check:[...]void[...]some_other_function([...]);
21 // gdb-check:[...]void[...]zzz([...]);
22
23 // gdb-command:run
24
25 // Make sure there is no information about locals
26 // gdb-command:info locals
27 // gdb-check:No locals.
28 // gdb-command:continue
29
30
31 #![allow(unused_variables)]
32 #![feature(omit_gdb_pretty_printer_section)]
33 #![omit_gdb_pretty_printer_section]
34
35 struct Struct {
36 a: i64,
37 b: i32
38 }
39
40 fn main() {
41 some_function(101, 202);
42 some_other_function(1, 2);
43 }
44
45
46 fn zzz() {()}
47
48 fn some_function(a: isize, b: isize) {
49 let some_variable = Struct { a: 11, b: 22 };
50 let some_other_variable = 23;
51
52 for x in 0..1 {
53 zzz(); // #break
54 }
55 }
56
57 fn some_other_function(a: isize, b: isize) -> bool { true }