about summary refs log tree commit diff
path: root/tests/debuginfo/generic-enum-with-different-disr-sizes.rs
diff options
context:
space:
mode:
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