Skip to content

Commit 16b91e8

Browse files
committed
Update debuginfo test for newer lldb
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
1 parent 94579ff commit 16b91e8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/debuginfo/constant-ordering-prologue.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@
2020
// lldb-command:run
2121

2222
// lldb-command:print a
23-
// lldb-check: = 19
23+
// lldb-check: 19
2424
// lldb-command:print b
25-
// lldb-check: = 20
25+
// lldb-check: 20
2626
// lldb-command:print c
27-
// lldb-check: = 21.5
27+
// lldb-check: 21.5
2828

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

0 commit comments

Comments
 (0)