about summary refs log tree commit diff
path: root/tests/debuginfo/destructured-for-loop-variable.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/destructured-for-loop-variable.rs
parent36a8daeb44ebee51fb769a106e5aafbbb4a59ebb (diff)
downloadrust-75fba9d574dfd85d9046ddda67d2da2da86ce61c.tar.gz
rust-75fba9d574dfd85d9046ddda67d2da2da86ce61c.zip
Remove LLDB persistent results in `compiletest`.
Diffstat (limited to 'tests/debuginfo/destructured-for-loop-variable.rs')
-rw-r--r--tests/debuginfo/destructured-for-loop-variable.rs48
1 files changed, 24 insertions, 24 deletions
diff --git a/tests/debuginfo/destructured-for-loop-variable.rs b/tests/debuginfo/destructured-for-loop-variable.rs
index 3e27d122c4b..e583804cb1e 100644
--- a/tests/debuginfo/destructured-for-loop-variable.rs
+++ b/tests/debuginfo/destructured-for-loop-variable.rs
@@ -85,89 +85,89 @@
 
 // DESTRUCTURED STRUCT
 // lldb-command:print x
-// lldbg-check:[...]$0 = 400
+// lldbg-check:[...] 400
 // lldbr-check:(i16) x = 400
 // lldb-command:print y
-// lldbg-check:[...]$1 = 401.5
+// lldbg-check:[...] 401.5
 // lldbr-check:(f32) y = 401.5
 // lldb-command:print z
-// lldbg-check:[...]$2 = true
+// lldbg-check:[...] true
 // lldbr-check:(bool) z = true
 // lldb-command:continue
 
 // DESTRUCTURED TUPLE
 // lldb-command:print _i8
-// lldbg-check:[...]$3 = 0x6f
+// lldbg-check:[...] 0x6f
 // lldbr-check:(i8) _i8 = 111
 // lldb-command:print _u8
-// lldbg-check:[...]$4 = 0x70
+// lldbg-check:[...] 0x70
 // lldbr-check:(u8) _u8 = 112
 // lldb-command:print _i16
-// lldbg-check:[...]$5 = -113
+// lldbg-check:[...] -113
 // lldbr-check:(i16) _i16 = -113
 // lldb-command:print _u16
-// lldbg-check:[...]$6 = 114
+// lldbg-check:[...] 114
 // lldbr-check:(u16) _u16 = 114
 // lldb-command:print _i32
-// lldbg-check:[...]$7 = -115
+// lldbg-check:[...] -115
 // lldbr-check:(i32) _i32 = -115
 // lldb-command:print _u32
-// lldbg-check:[...]$8 = 116
+// lldbg-check:[...] 116
 // lldbr-check:(u32) _u32 = 116
 // lldb-command:print _i64
-// lldbg-check:[...]$9 = -117
+// lldbg-check:[...] -117
 // lldbr-check:(i64) _i64 = -117
 // lldb-command:print _u64
-// lldbg-check:[...]$10 = 118
+// lldbg-check:[...] 118
 // lldbr-check:(u64) _u64 = 118
 // lldb-command:print _f32
-// lldbg-check:[...]$11 = 119.5
+// lldbg-check:[...] 119.5
 // lldbr-check:(f32) _f32 = 119.5
 // lldb-command:print _f64
-// lldbg-check:[...]$12 = 120.5
+// lldbg-check:[...] 120.5
 // lldbr-check:(f64) _f64 = 120.5
 // lldb-command:continue
 
 // MORE COMPLEX CASE
 // lldb-command:print v1
-// lldbg-check:[...]$13 = 80000
+// lldbg-check:[...] 80000
 // lldbr-check:(i32) v1 = 80000
 // lldb-command:print x1
-// lldbg-check:[...]$14 = 8000
+// lldbg-check:[...] 8000
 // lldbr-check:(i16) x1 = 8000
 // lldb-command:print *y1
-// lldbg-check:[...]$15 = 80001.5
+// lldbg-check:[...] 80001.5
 // lldbr-check:(f32) *y1 = 80001.5
 // lldb-command:print z1
-// lldbg-check:[...]$16 = false
+// lldbg-check:[...] false
 // lldbr-check:(bool) z1 = false
 // lldb-command:print *x2
-// lldbg-check:[...]$17 = -30000
+// lldbg-check:[...] -30000
 // lldbr-check:(i16) *x2 = -30000
 // lldb-command:print y2
-// lldbg-check:[...]$18 = -300001.5
+// lldbg-check:[...] -300001.5
 // lldbr-check:(f32) y2 = -300001.5
 // lldb-command:print *z2
-// lldbg-check:[...]$19 = true
+// lldbg-check:[...] true
 // lldbr-check:(bool) *z2 = true
 // lldb-command:print v2
-// lldbg-check:[...]$20 = 854237.5
+// lldbg-check:[...] 854237.5
 // lldbr-check:(f64) v2 = 854237.5
 // lldb-command:continue
 
 // SIMPLE IDENTIFIER
 // lldb-command:print i
-// lldbg-check:[...]$21 = 1234
+// lldbg-check:[...] 1234
 // lldbr-check:(i32) i = 1234
 // lldb-command:continue
 
 // lldb-command:print simple_struct_ident
-// lldbg-check:[...]$22 = { x = 3537 y = 35437.5 z = true }
+// lldbg-check:[...] { x = 3537 y = 35437.5 z = true }
 // lldbr-check:(destructured_for_loop_variable::Struct) simple_struct_ident = { x = 3537 y = 35437.5 z = true }
 // lldb-command:continue
 
 // lldb-command:print simple_tuple_ident
-// lldbg-check:[...]$23 = { 0 = 34903493 1 = 232323 }
+// lldbg-check:[...] { 0 = 34903493 1 = 232323 }
 // lldbr-check:((u32, i64)) simple_tuple_ident = { 0 = 34903493 1 = 232323 }
 // lldb-command:continue