Skip to content

Commit ce70106

Browse files
authored
Rollup merge of #47230 - nerd2:debuginfo_shadow, r=alexcrichton
Debuginfo Shadowed Variable test: fix check numbering Appears to be a simple fix to restore this test. Ref issue #47163, CC @arielb1
2 parents f612584 + 7c971b2 commit ce70106

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

src/test/debuginfo/shadowed-variable.rs

+8-9
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
// except according to those terms.
1010

1111
// min-lldb-version: 310
12-
// ignore-test // Test temporarily ignored due to debuginfo tests being disabled, see PR 47155
1312
// compile-flags:-g
1413

1514
// === GDB TESTS ===================================================================================
@@ -35,15 +34,15 @@
3534
// gdb-command:continue
3635

3736
// gdb-command:print x
38-
// gdb-check:$5 = 10.5
37+
// gdb-check:$7 = 10.5
3938
// gdb-command:print y
40-
// gdb-check:$6 = 20
39+
// gdb-check:$8 = 20
4140
// gdb-command:continue
4241

4342
// gdb-command:print x
44-
// gdb-check:$5 = 11.5
43+
// gdb-check:$9 = 11.5
4544
// gdb-command:print y
46-
// gdb-check:$6 = 20
45+
// gdb-check:$10 = 20
4746
// gdb-command:continue
4847

4948
// === LLDB TESTS ==================================================================================
@@ -69,15 +68,15 @@
6968
// lldb-command:continue
7069

7170
// lldb-command:print x
72-
// lldb-check:[...]$4 = 10.5
71+
// lldb-check:[...]$6 = 10.5
7372
// lldb-command:print y
74-
// lldb-check:[...]$5 = 20
73+
// lldb-check:[...]$7 = 20
7574
// lldb-command:continue
7675

7776
// lldb-command:print x
78-
// lldb-check:[...]$4 = 11.5
77+
// lldb-check:[...]$8 = 11.5
7978
// lldb-command:print y
80-
// lldb-check:[...]$5 = 20
79+
// lldb-check:[...]$9 = 20
8180
// lldb-command:continue
8281

8382
#![feature(omit_gdb_pretty_printer_section)]

0 commit comments

Comments
 (0)