about summary refs log tree commit diff
path: root/tests/debuginfo/generic-enum-with-different-disr-sizes.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/generic-enum-with-different-disr-sizes.rs
parent36a8daeb44ebee51fb769a106e5aafbbb4a59ebb (diff)
downloadrust-75fba9d574dfd85d9046ddda67d2da2da86ce61c.tar.gz
rust-75fba9d574dfd85d9046ddda67d2da2da86ce61c.zip
Remove LLDB persistent results in `compiletest`.
Diffstat (limited to 'tests/debuginfo/generic-enum-with-different-disr-sizes.rs')
-rw-r--r--tests/debuginfo/generic-enum-with-different-disr-sizes.rs16
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/debuginfo/generic-enum-with-different-disr-sizes.rs b/tests/debuginfo/generic-enum-with-different-disr-sizes.rs
index 6a8aa831c40..a7e97194e5d 100644
--- a/tests/debuginfo/generic-enum-with-different-disr-sizes.rs
+++ b/tests/debuginfo/generic-enum-with-different-disr-sizes.rs
@@ -40,22 +40,22 @@
 // lldb-command:run
 
 // lldb-command:print eight_bytes1
-// lldb-check:[...]$0 = Variant1(100)
+// lldb-check:[...] Variant1(100)
 // lldb-command:print four_bytes1
-// lldb-check:[...]$1 = Variant1(101)
+// lldb-check:[...] Variant1(101)
 // lldb-command:print two_bytes1
-// lldb-check:[...]$2 = Variant1(102)
+// lldb-check:[...] Variant1(102)
 // lldb-command:print one_byte1
-// lldb-check:[...]$3 = Variant1('A')
+// lldb-check:[...] Variant1('A')
 
 // lldb-command:print eight_bytes2
-// lldb-check:[...]$4 = Variant2(100)
+// lldb-check:[...] Variant2(100)
 // lldb-command:print four_bytes2
-// lldb-check:[...]$5 = Variant2(101)
+// lldb-check:[...] Variant2(101)
 // lldb-command:print two_bytes2
-// lldb-check:[...]$6 = Variant2(102)
+// lldb-check:[...] Variant2(102)
 // lldb-command:print one_byte2
-// lldb-check:[...]$7 = Variant2('A')
+// lldb-check:[...] Variant2('A')
 
 // lldb-command:continue