about summary refs log tree commit diff
path: root/tests/debuginfo/method-on-tuple-struct.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/method-on-tuple-struct.rs
parent36a8daeb44ebee51fb769a106e5aafbbb4a59ebb (diff)
downloadrust-75fba9d574dfd85d9046ddda67d2da2da86ce61c.tar.gz
rust-75fba9d574dfd85d9046ddda67d2da2da86ce61c.zip
Remove LLDB persistent results in `compiletest`.
Diffstat (limited to 'tests/debuginfo/method-on-tuple-struct.rs')
-rw-r--r--tests/debuginfo/method-on-tuple-struct.rs30
1 files changed, 15 insertions, 15 deletions
diff --git a/tests/debuginfo/method-on-tuple-struct.rs b/tests/debuginfo/method-on-tuple-struct.rs
index 7ac0a2d8574..872f6ea57c2 100644
--- a/tests/debuginfo/method-on-tuple-struct.rs
+++ b/tests/debuginfo/method-on-tuple-struct.rs
@@ -63,61 +63,61 @@
 
 // STACK BY REF
 // lldb-command:print *self
-// lldbg-check:[...]$0 = { 0 = 100 1 = -100.5 }
+// lldbg-check:[...] { 0 = 100 1 = -100.5 }
 // lldbr-check:(method_on_tuple_struct::TupleStruct) *self = { 0 = 100 1 = -100.5 }
 // lldb-command:print arg1
-// lldbg-check:[...]$1 = -1
+// lldbg-check:[...] -1
 // lldbr-check:(isize) arg1 = -1
 // lldb-command:print arg2
-// lldbg-check:[...]$2 = -2
+// lldbg-check:[...] -2
 // lldbr-check:(isize) arg2 = -2
 // lldb-command:continue
 
 // STACK BY VAL
 // lldb-command:print self
-// lldbg-check:[...]$3 = { 0 = 100 1 = -100.5 }
+// lldbg-check:[...] { 0 = 100 1 = -100.5 }
 // lldbr-check:(method_on_tuple_struct::TupleStruct) self = { 0 = 100 1 = -100.5 }
 // lldb-command:print arg1
-// lldbg-check:[...]$4 = -3
+// lldbg-check:[...] -3
 // lldbr-check:(isize) arg1 = -3
 // lldb-command:print arg2
-// lldbg-check:[...]$5 = -4
+// lldbg-check:[...] -4
 // lldbr-check:(isize) arg2 = -4
 // lldb-command:continue
 
 // OWNED BY REF
 // lldb-command:print *self
-// lldbg-check:[...]$6 = { 0 = 200 1 = -200.5 }
+// lldbg-check:[...] { 0 = 200 1 = -200.5 }
 // lldbr-check:(method_on_tuple_struct::TupleStruct) *self = { 0 = 200 1 = -200.5 }
 // lldb-command:print arg1
-// lldbg-check:[...]$7 = -5
+// lldbg-check:[...] -5
 // lldbr-check:(isize) arg1 = -5
 // lldb-command:print arg2
-// lldbg-check:[...]$8 = -6
+// lldbg-check:[...] -6
 // lldbr-check:(isize) arg2 = -6
 // lldb-command:continue
 
 // OWNED BY VAL
 // lldb-command:print self
-// lldbg-check:[...]$9 = { 0 = 200 1 = -200.5 }
+// lldbg-check:[...] { 0 = 200 1 = -200.5 }
 // lldbr-check:(method_on_tuple_struct::TupleStruct) self = { 0 = 200 1 = -200.5 }
 // lldb-command:print arg1
-// lldbg-check:[...]$10 = -7
+// lldbg-check:[...] -7
 // lldbr-check:(isize) arg1 = -7
 // lldb-command:print arg2
-// lldbg-check:[...]$11 = -8
+// lldbg-check:[...] -8
 // lldbr-check:(isize) arg2 = -8
 // lldb-command:continue
 
 // OWNED MOVED
 // lldb-command:print *self
-// lldbg-check:[...]$12 = { 0 = 200 1 = -200.5 }
+// lldbg-check:[...] { 0 = 200 1 = -200.5 }
 // lldbr-check:(method_on_tuple_struct::TupleStruct) *self = { 0 = 200 1 = -200.5 }
 // lldb-command:print arg1
-// lldbg-check:[...]$13 = -9
+// lldbg-check:[...] -9
 // lldbr-check:(isize) arg1 = -9
 // lldb-command:print arg2
-// lldbg-check:[...]$14 = -10
+// lldbg-check:[...] -10
 // lldbr-check:(isize) arg2 = -10
 // lldb-command:continue