ac33b2e578
If the rust-enabled lldb was built, then use it when running the debuginfo tests. Updating the lldb submodule was necessary as this needed a way to differentiate the rust-enabled lldb, so I added a line to the --version output. This adds compiletest commands to differentiate between the rust-enabled and non-rust-enabled lldb, as is already done for gdb. A new "rust-lldb" header directive is also added, but not used in this patch; I plan to use it in #54004. This updates all the tests.
91 lines
3.3 KiB
Rust
91 lines
3.3 KiB
Rust
// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
|
|
// file at the top-level directory of this distribution and at
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
// option. This file may not be copied, modified, or distributed
|
|
// except according to those terms.
|
|
|
|
// min-lldb-version: 310
|
|
|
|
// compile-flags:-g
|
|
|
|
// === GDB TESTS ===================================================================================
|
|
|
|
// gdb-command:run
|
|
|
|
// gdb-command:print no_padding1
|
|
// gdbg-check:$1 = {__0 = {__0 = 0, __1 = 1}, __1 = 2, __2 = 3}
|
|
// gdbr-check:$1 = ((0, 1), 2, 3)
|
|
// gdb-command:print no_padding2
|
|
// gdbg-check:$2 = {__0 = 4, __1 = {__0 = 5, __1 = 6}, __2 = 7}
|
|
// gdbr-check:$2 = (4, (5, 6), 7)
|
|
// gdb-command:print no_padding3
|
|
// gdbg-check:$3 = {__0 = 8, __1 = 9, __2 = {__0 = 10, __1 = 11}}
|
|
// gdbr-check:$3 = (8, 9, (10, 11))
|
|
|
|
// gdb-command:print internal_padding1
|
|
// gdbg-check:$4 = {__0 = 12, __1 = {__0 = 13, __1 = 14}}
|
|
// gdbr-check:$4 = (12, (13, 14))
|
|
// gdb-command:print internal_padding2
|
|
// gdbg-check:$5 = {__0 = 15, __1 = {__0 = 16, __1 = 17}}
|
|
// gdbr-check:$5 = (15, (16, 17))
|
|
|
|
// gdb-command:print padding_at_end1
|
|
// gdbg-check:$6 = {__0 = 18, __1 = {__0 = 19, __1 = 20}}
|
|
// gdbr-check:$6 = (18, (19, 20))
|
|
// gdb-command:print padding_at_end2
|
|
// gdbg-check:$7 = {__0 = {__0 = 21, __1 = 22}, __1 = 23}
|
|
// gdbr-check:$7 = ((21, 22), 23)
|
|
|
|
|
|
// === LLDB TESTS ==================================================================================
|
|
|
|
// lldb-command:run
|
|
|
|
// lldb-command:print no_padding1
|
|
// lldbg-check:[...]$0 = ((0, 1), 2, 3)
|
|
// lldbr-check:(((u32, u32), u32, u32)) no_padding1 = { = { = 0 = 1 } = 2 = 3 }
|
|
// lldb-command:print no_padding2
|
|
// lldbg-check:[...]$1 = (4, (5, 6), 7)
|
|
// lldbr-check:((u32, (u32, u32), u32)) no_padding2 = { = 4 = { = 5 = 6 } = 7 }
|
|
// lldb-command:print no_padding3
|
|
// lldbg-check:[...]$2 = (8, 9, (10, 11))
|
|
// lldbr-check:((u32, u32, (u32, u32))) no_padding3 = { = 8 = 9 = { = 10 = 11 } }
|
|
|
|
// lldb-command:print internal_padding1
|
|
// lldbg-check:[...]$3 = (12, (13, 14))
|
|
// lldbr-check:((i16, (i32, i32))) internal_padding1 = { = 12 = { = 13 = 14 } }
|
|
// lldb-command:print internal_padding2
|
|
// lldbg-check:[...]$4 = (15, (16, 17))
|
|
// lldbr-check:((i16, (i16, i32))) internal_padding2 = { = 15 = { = 16 = 17 } }
|
|
|
|
// lldb-command:print padding_at_end1
|
|
// lldbg-check:[...]$5 = (18, (19, 20))
|
|
// lldbr-check:((i32, (i32, i16))) padding_at_end1 = { = 18 = { = 19 = 20 } }
|
|
// lldb-command:print padding_at_end2
|
|
// lldbg-check:[...]$6 = ((21, 22), 23)
|
|
// lldbr-check:(((i32, i16), i32)) padding_at_end2 = { = { = 21 = 22 } = 23 }
|
|
|
|
#![allow(unused_variables)]
|
|
#![feature(omit_gdb_pretty_printer_section)]
|
|
#![omit_gdb_pretty_printer_section]
|
|
|
|
fn main() {
|
|
let no_padding1: ((u32, u32), u32, u32) = ((0, 1), 2, 3);
|
|
let no_padding2: (u32, (u32, u32), u32) = (4, (5, 6), 7);
|
|
let no_padding3: (u32, u32, (u32, u32)) = (8, 9, (10, 11));
|
|
|
|
let internal_padding1: (i16, (i32, i32)) = (12, (13, 14));
|
|
let internal_padding2: (i16, (i16, i32)) = (15, (16, 17));
|
|
|
|
let padding_at_end1: (i32, (i32, i16)) = (18, (19, 20));
|
|
let padding_at_end2: ((i32, i16), i32) = ((21, 22), 23);
|
|
|
|
zzz(); // #break
|
|
}
|
|
|
|
fn zzz() {()}
|