Commit 4474668
authored
Rollup merge of #156769 - fallofpheonix:fix-path-lldb-macos, r=jieyouxu
Use print instead of po in debuginfo path test
Fixes #156660
This fixes `tests/debuginfo/path.rs` failing on newer Apple LLDB versions.
Root cause:
Apple LLDB 2100 reports missing Rust language plugin support:
warning: `po` was unsuccessful, running `p` instead
As a result, `po` falls back to `p`, producing expanded output that no longer matches the existing `lldb-check` directives.
Changes:
- replace `po` with `print`
- relax `lldb-check` expectations using `[...]`
- preserve validation of the displayed path value
This also aligns `path.rs` with the rest of the debuginfo tests, as it appears to be the only test using `po`.
---
EDIT(@jieyouxu): see digging #156769 (comment)1 file changed
Lines changed: 0 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
11 | | - | |
12 | | - | |
13 | 11 | | |
14 | 12 | | |
15 | | - | |
16 | | - | |
17 | 13 | | |
18 | 14 | | |
19 | 15 | | |
| |||
0 commit comments