about summary refs log tree commit diff
path: root/tests/debuginfo/pretty-std.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/pretty-std.rs
parent36a8daeb44ebee51fb769a106e5aafbbb4a59ebb (diff)
downloadrust-75fba9d574dfd85d9046ddda67d2da2da86ce61c.tar.gz
rust-75fba9d574dfd85d9046ddda67d2da2da86ce61c.zip
Remove LLDB persistent results in `compiletest`.
Diffstat (limited to 'tests/debuginfo/pretty-std.rs')
-rw-r--r--tests/debuginfo/pretty-std.rs14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/debuginfo/pretty-std.rs b/tests/debuginfo/pretty-std.rs
index 2c2795379c9..74eba9af786 100644
--- a/tests/debuginfo/pretty-std.rs
+++ b/tests/debuginfo/pretty-std.rs
@@ -45,25 +45,25 @@
 // lldb-command: run
 
 // lldb-command: print slice
-// lldb-check:[...]$0 = &[0, 1, 2, 3]
+// lldb-check:[...] &[0, 1, 2, 3]
 
 // lldb-command: print vec
-// lldb-check:[...]$1 = vec![4, 5, 6, 7]
+// lldb-check:[...] vec![4, 5, 6, 7]
 
 // lldb-command: print str_slice
-// lldb-check:[...]$2 = "IAMA string slice!"
+// lldb-check:[...] "IAMA string slice!"
 
 // lldb-command: print string
-// lldb-check:[...]$3 = "IAMA string!"
+// lldb-check:[...] "IAMA string!"
 
 // lldb-command: print some
-// lldb-check:[...]$4 = Some(8)
+// lldb-check:[...] Some(8)
 
 // lldb-command: print none
-// lldb-check:[...]$5 = None
+// lldb-check:[...] None
 
 // lldb-command: print os_string
-// lldb-check:[...]$6 = "IAMA OS string 😃"[...]
+// lldb-check:[...] "IAMA OS string 😃"[...]
 
 // === CDB TESTS ==================================================================================