]> git.lizzy.rs Git - rust.git/blob - src/test/debuginfo/vec.rs
Rollup merge of #51722 - Aaronepower:master, r=Mark-Simulacrum
[rust.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 // min-lldb-version: 310
12 // ignore-gdb // Test temporarily ignored due to debuginfo tests being disabled, see PR 47155
13
14 // compile-flags:-g
15
16 // === GDB TESTS ===================================================================================
17
18 // gdb-command:run
19 // gdb-command:print a
20 // gdbg-check:$1 = {1, 2, 3}
21 // gdbr-check:$1 = [1, 2, 3]
22 // gdb-command:print vec::VECT
23 // gdbg-check:$2 = {4, 5, 6}
24 // gdbr-check:$2 = [4, 5, 6]
25
26
27 // === LLDB TESTS ==================================================================================
28
29 // lldb-command:run
30 // lldb-command:print a
31 // lldb-check:[...]$0 = [1, 2, 3]
32
33 #![allow(unused_variables)]
34 #![feature(omit_gdb_pretty_printer_section)]
35 #![omit_gdb_pretty_printer_section]
36
37 static mut VECT: [i32; 3] = [1, 2, 3];
38
39 fn main() {
40     let a = [1, 2, 3];
41
42     unsafe {
43         VECT[0] = 4;
44         VECT[1] = 5;
45         VECT[2] = 6;
46     }
47
48     zzz(); // #break
49 }
50
51 fn zzz() {()}