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/include_string.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/include_string.rs')
| -rw-r--r-- | tests/debuginfo/include_string.rs | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/tests/debuginfo/include_string.rs b/tests/debuginfo/include_string.rs index 628ac92fe34..704b85e1ac2 100644 --- a/tests/debuginfo/include_string.rs +++ b/tests/debuginfo/include_string.rs @@ -1,4 +1,3 @@ -//@ min-lldb-version: 310 //@ ignore-gdb-version: 15.0 - 99.0 // ^ test temporarily disabled as it fails under gdb 15 @@ -18,14 +17,11 @@ // lldb-command:run // lldb-command:v string1.length -// lldbg-check:[...] 48 -// lldbr-check:(usize) length = 48 +// lldb-check:[...] 48 // lldb-command:v string2.length -// lldbg-check:[...] 49 -// lldbr-check:(usize) length = 49 +// lldb-check:[...] 49 // lldb-command:v string3.length -// lldbg-check:[...] 50 -// lldbr-check:(usize) length = 50 +// lldb-check:[...] 50 // lldb-command:continue |
