]> git.lizzy.rs Git - rust.git/blob - src/test/debuginfo/vec.rs
Rollup merge of #56476 - GuillaumeGomez:invalid-line-number-match, r=QuietMisdreavus
[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 // lldbg-check:[...]$0 = [1, 2, 3]
32 // lldbr-check:([i32; 3]) a = [1, 2, 3]
33
34 #![allow(unused_variables)]
35 #![feature(omit_gdb_pretty_printer_section)]
36 #![omit_gdb_pretty_printer_section]
37
38 static mut VECT: [i32; 3] = [1, 2, 3];
39
40 fn main() {
41     let a = [1, 2, 3];
42
43     unsafe {
44         VECT[0] = 4;
45         VECT[1] = 5;
46         VECT[2] = 6;
47     }
48
49     zzz(); // #break
50 }
51
52 fn zzz() {()}