about summary refs log tree commit diff
path: root/tests/debuginfo/shadowed-argument.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/debuginfo/shadowed-argument.rs')
-rw-r--r--tests/debuginfo/shadowed-argument.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/debuginfo/shadowed-argument.rs b/tests/debuginfo/shadowed-argument.rs
index 33f73340a83..2be8cbbdfeb 100644
--- a/tests/debuginfo/shadowed-argument.rs
+++ b/tests/debuginfo/shadowed-argument.rs
@@ -30,26 +30,26 @@
 // lldb-command:run
 
 // lldb-command:print x
-// lldbg-check:[...]$0 = false
+// lldbg-check:[...] false
 // lldbr-check:(bool) x = false
 // lldb-command:print y
-// lldbg-check:[...]$1 = true
+// lldbg-check:[...] true
 // lldbr-check:(bool) y = true
 // lldb-command:continue
 
 // lldb-command:print x
-// lldbg-check:[...]$2 = 10
+// lldbg-check:[...] 10
 // lldbr-check:(i32) x = 10
 // lldb-command:print y
-// lldbg-check:[...]$3 = true
+// lldbg-check:[...] true
 // lldbr-check:(bool) y = true
 // lldb-command:continue
 
 // lldb-command:print x
-// lldbg-check:[...]$4 = 10.5
+// lldbg-check:[...] 10.5
 // lldbr-check:(f64) x = 10.5
 // lldb-command:print y
-// lldbg-check:[...]$5 = 20
+// lldbg-check:[...] 20
 // lldbr-check:(i32) y = 20
 // lldb-command:continue