]> git.proxmox.com Git - rustc.git/blob - src/test/debuginfo/vec.rs
Merge tag 'upstream-tar/1.0.0_0alpha'
[rustc.git] / src / test / debuginfo / vec.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 // min-lldb-version: 310
13
14 // compile-flags:-g
15
16 // === GDB TESTS ===================================================================================
17
18 // gdb-command:run
19 // gdb-command:print a
20 // gdb-check:$1 = {1, 2, 3}
21 // gdb-command:print vec::VECT
22 // gdb-check:$2 = {4, 5, 6}
23
24
25 // === LLDB TESTS ==================================================================================
26
27 // lldb-command:run
28 // lldb-command:print a
29 // lldb-check:[...]$0 = [1, 2, 3]
30
31 #![allow(unused_variables)]
32 #![omit_gdb_pretty_printer_section]
33
34 static mut VECT: [i32; 3] = [1, 2, 3];
35
36 fn main() {
37 let a = [1i, 2, 3];
38
39 unsafe {
40 VECT[0] = 4;
41 VECT[1] = 5;
42 VECT[2] = 6;
43 }
44
45 zzz(); // #break
46 }
47
48 fn zzz() {()}