2015-02-11 17:29:49 +00:00
|
|
|
// Copyright 2013-2015 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.
|
|
|
|
|
2015-09-19 20:33:47 +00:00
|
|
|
#![feature(omit_gdb_pretty_printer_section)]
|
2015-02-11 17:29:49 +00:00
|
|
|
#![omit_gdb_pretty_printer_section]
|
|
|
|
|
|
|
|
// min-lldb-version: 310
|
|
|
|
|
2018-09-26 18:58:10 +00:00
|
|
|
// This fails on lldb 6.0.1 on x86-64 Fedora 28; so mark it macOS-only
|
|
|
|
// for now.
|
|
|
|
// only-macos
|
|
|
|
|
2015-02-11 17:29:49 +00:00
|
|
|
// aux-build:cross_crate_spans.rs
|
|
|
|
extern crate cross_crate_spans;
|
|
|
|
|
|
|
|
// compile-flags:-g
|
|
|
|
|
|
|
|
|
|
|
|
// === GDB TESTS ===================================================================================
|
|
|
|
|
2015-09-19 20:33:47 +00:00
|
|
|
// gdb-command:break cross_crate_spans.rs:24
|
2015-02-11 17:29:49 +00:00
|
|
|
// gdb-command:run
|
|
|
|
|
|
|
|
// gdb-command:print result
|
2016-10-25 21:32:04 +00:00
|
|
|
// gdbg-check:$1 = {__0 = 17, __1 = 17}
|
|
|
|
// gdbr-check:$1 = (17, 17)
|
2015-02-11 17:29:49 +00:00
|
|
|
// gdb-command:print a_variable
|
|
|
|
// gdb-check:$2 = 123456789
|
|
|
|
// gdb-command:print another_variable
|
|
|
|
// gdb-check:$3 = 123456789.5
|
|
|
|
// gdb-command:continue
|
|
|
|
|
|
|
|
// gdb-command:print result
|
2016-10-25 21:32:04 +00:00
|
|
|
// gdbg-check:$4 = {__0 = 1212, __1 = 1212}
|
|
|
|
// gdbr-check:$4 = (1212, 1212)
|
2015-02-11 17:29:49 +00:00
|
|
|
// gdb-command:print a_variable
|
|
|
|
// gdb-check:$5 = 123456789
|
|
|
|
// gdb-command:print another_variable
|
|
|
|
// gdb-check:$6 = 123456789.5
|
|
|
|
// gdb-command:continue
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// === LLDB TESTS ==================================================================================
|
|
|
|
|
2015-09-19 20:33:47 +00:00
|
|
|
// lldb-command:b cross_crate_spans.rs:24
|
2015-02-11 17:29:49 +00:00
|
|
|
// lldb-command:run
|
|
|
|
|
|
|
|
// lldb-command:print result
|
2018-10-02 16:13:30 +00:00
|
|
|
// lldbg-check:[...]$0 = (17, 17)
|
|
|
|
// lldbr-check:((u32, u32)) result = { = 17 = 17 }
|
2015-02-11 17:29:49 +00:00
|
|
|
// lldb-command:print a_variable
|
2018-10-02 16:13:30 +00:00
|
|
|
// lldbg-check:[...]$1 = 123456789
|
|
|
|
// lldbr-check:(u32) a_variable = 123456789
|
2015-02-11 17:29:49 +00:00
|
|
|
// lldb-command:print another_variable
|
2018-10-02 16:13:30 +00:00
|
|
|
// lldbg-check:[...]$2 = 123456789.5
|
|
|
|
// lldbr-check:(f64) another_variable = 123456789.5
|
2015-02-11 17:29:49 +00:00
|
|
|
// lldb-command:continue
|
|
|
|
|
|
|
|
// lldb-command:print result
|
2018-10-02 16:13:30 +00:00
|
|
|
// lldbg-check:[...]$3 = (1212, 1212)
|
|
|
|
// lldbr-check:((i16, i16)) result = { = 1212 = 1212 }
|
2015-02-11 17:29:49 +00:00
|
|
|
// lldb-command:print a_variable
|
2018-10-02 16:13:30 +00:00
|
|
|
// lldbg-check:[...]$4 = 123456789
|
|
|
|
// lldbr-check:(u32) a_variable = 123456789
|
2015-02-11 17:29:49 +00:00
|
|
|
// lldb-command:print another_variable
|
2018-10-02 16:13:30 +00:00
|
|
|
// lldbg-check:[...]$5 = 123456789.5
|
|
|
|
// lldbr-check:(f64) another_variable = 123456789.5
|
2015-02-11 17:29:49 +00:00
|
|
|
// lldb-command:continue
|
|
|
|
|
|
|
|
|
|
|
|
// This test makes sure that we can break in functions inlined from other crates.
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
|
|
|
let _ = cross_crate_spans::generic_function(17u32);
|
|
|
|
let _ = cross_crate_spans::generic_function(1212i16);
|
|
|
|
|
|
|
|
}
|