about summary refs log tree commit diff
path: root/tests/debuginfo/shadowed-argument.rs
diff options
context:
space:
mode:
authorMarkus Reiter <me@reitermark.us>2024-03-10 14:55:58 +0100
committerMarkus Reiter <me@reitermark.us>2024-03-14 17:34:58 +0100
commit75fba9d574dfd85d9046ddda67d2da2da86ce61c (patch)
treec14244a0a965a180b32f4785d3f71bd2686826b0 /tests/debuginfo/shadowed-argument.rs
parent36a8daeb44ebee51fb769a106e5aafbbb4a59ebb (diff)
downloadrust-75fba9d574dfd85d9046ddda67d2da2da86ce61c.tar.gz
rust-75fba9d574dfd85d9046ddda67d2da2da86ce61c.zip
Remove LLDB persistent results in `compiletest`.
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