diff options
| author | Sam <slancia@cisco.com> | 2018-01-06 11:05:31 +0000 |
|---|---|---|
| committer | Sam <slancia@cisco.com> | 2018-01-06 11:10:17 +0000 |
| commit | 7c971b2ab18f73a03c05f6349e314461be8b8c32 (patch) | |
| tree | 0353c396604821bb6952be4b346cdec6ab6c0a15 /src/test/debuginfo | |
| parent | fdc6ca44c37e58be4064f44977515c66f4e07262 (diff) | |
| download | rust-7c971b2ab18f73a03c05f6349e314461be8b8c32.tar.gz rust-7c971b2ab18f73a03c05f6349e314461be8b8c32.zip | |
Debuginfo Shadowed Variable test: fix check numbering
Diffstat (limited to 'src/test/debuginfo')
| -rw-r--r-- | src/test/debuginfo/shadowed-variable.rs | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/src/test/debuginfo/shadowed-variable.rs b/src/test/debuginfo/shadowed-variable.rs index 5d3026734c1..6e4d94d26cd 100644 --- a/src/test/debuginfo/shadowed-variable.rs +++ b/src/test/debuginfo/shadowed-variable.rs @@ -9,7 +9,6 @@ // except according to those terms. // min-lldb-version: 310 -// ignore-test // Test temporarily ignored due to debuginfo tests being disabled, see PR 47155 // compile-flags:-g // === GDB TESTS =================================================================================== @@ -35,15 +34,15 @@ // gdb-command:continue // gdb-command:print x -// gdb-check:$5 = 10.5 +// gdb-check:$7 = 10.5 // gdb-command:print y -// gdb-check:$6 = 20 +// gdb-check:$8 = 20 // gdb-command:continue // gdb-command:print x -// gdb-check:$5 = 11.5 +// gdb-check:$9 = 11.5 // gdb-command:print y -// gdb-check:$6 = 20 +// gdb-check:$10 = 20 // gdb-command:continue // === LLDB TESTS ================================================================================== @@ -69,15 +68,15 @@ // lldb-command:continue // lldb-command:print x -// lldb-check:[...]$4 = 10.5 +// lldb-check:[...]$6 = 10.5 // lldb-command:print y -// lldb-check:[...]$5 = 20 +// lldb-check:[...]$7 = 20 // lldb-command:continue // lldb-command:print x -// lldb-check:[...]$4 = 11.5 +// lldb-check:[...]$8 = 11.5 // lldb-command:print y -// lldb-check:[...]$5 = 20 +// lldb-check:[...]$9 = 20 // lldb-command:continue #![feature(omit_gdb_pretty_printer_section)] |
