Skip to content

Commit

Permalink
Update debuginfo test for newer lldb
Browse files Browse the repository at this point in the history
For reasons I don't understand, lldb in Xcode 15 no longer prints objects as:

(long) $0 = 19

instead, it is printing them as:

(long) 19

(cherry picked from commit 16b91e8)
  • Loading branch information
ehuss authored and cuviper committed Nov 15, 2024
1 parent 7757d32 commit 48c21ba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/debuginfo/constant-ordering-prologue.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
// lldb-command:run

// lldb-command:print a
// lldb-check: = 19
// lldb-check: 19
// lldb-command:print b
// lldb-check: = 20
// lldb-check: 20
// lldb-command:print c
// lldb-check: = 21.5
// lldb-check: 21.5

fn binding(a: i64, b: u64, c: f64) {
let x = 0;
Expand Down

0 comments on commit 48c21ba

Please sign in to comment.