diff options
| author | bors <bors@rust-lang.org> | 2024-08-19 12:16:20 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-08-19 12:16:20 +0000 |
| commit | 4fe1e2bd5bf5a6f1cb245f161a5e9d315766f103 (patch) | |
| tree | 6518a4cb7fea427377f1875de885b419988bdbac /tests/debuginfo/multiple-functions-equal-var-names.rs | |
| parent | 45fbf41deb24581471e3e56824d9318d3d415cb8 (diff) | |
| parent | b2dae987f8d0118be944434f0504f5fefd8737c4 (diff) | |
| download | rust-4fe1e2bd5bf5a6f1cb245f161a5e9d315766f103.tar.gz rust-4fe1e2bd5bf5a6f1cb245f161a5e9d315766f103.zip | |
Auto merge of #129218 - saethlin:gdb-supports-rust-now, r=jieyouxu
Delete debuginfo test suite infra for gdb without Rust support and lldb with Rust support Implements https://github.com/rust-lang/rust/issues/128953 I also deleted all the `min-lldb-version: 310` comments, because the oldest compatible distro I can find is Ubuntu 16.04 which ships lldb 3.8, though of course the package that the Ubuntu maintainers put together for that is broken. Rocky Linux 8 amusingly ships lldb 17, even though it has a similar glibc and kernel version. This PR is multiple highly mechanical changes. Some of the commits were created by just running `sed`. You may find it easier to review each commit separately.
Diffstat (limited to 'tests/debuginfo/multiple-functions-equal-var-names.rs')
| -rw-r--r-- | tests/debuginfo/multiple-functions-equal-var-names.rs | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/tests/debuginfo/multiple-functions-equal-var-names.rs b/tests/debuginfo/multiple-functions-equal-var-names.rs index 2d9caf75290..6ae9225d55c 100644 --- a/tests/debuginfo/multiple-functions-equal-var-names.rs +++ b/tests/debuginfo/multiple-functions-equal-var-names.rs @@ -1,5 +1,3 @@ -//@ min-lldb-version: 310 - //@ compile-flags:-g // === GDB TESTS =================================================================================== @@ -23,18 +21,15 @@ // lldb-command:run // lldb-command:v abc -// lldbg-check:[...] 10101 -// lldbr-check:(i32) abc = 10101 +// lldb-check:[...] 10101 // lldb-command:continue // lldb-command:v abc -// lldbg-check:[...] 20202 -// lldbr-check:(i32) abc = 20202 +// lldb-check:[...] 20202 // lldb-command:continue // lldb-command:v abc -// lldbg-check:[...] 30303 -// lldbr-check:(i32) abc = 30303 +// lldb-check:[...] 30303 #![allow(unused_variables)] #![feature(omit_gdb_pretty_printer_section)] |
