about summary refs log tree commit diff
path: root/tests/debuginfo/method-on-enum.rs
diff options
context:
space:
mode:
authorMarkus Reiter <me@reitermark.us>2024-03-15 15:05:57 +0100
committerMarkus Reiter <me@reitermark.us>2024-03-15 15:38:03 +0100
commit96431e4b822ff82268bf3f2bbbb7aacf2abc5761 (patch)
treeaf08af546034165de64300c1828de26f74863dc6 /tests/debuginfo/method-on-enum.rs
parent2047e847d7234117bf96583be3dcc4fb0f42d0bf (diff)
downloadrust-96431e4b822ff82268bf3f2bbbb7aacf2abc5761.tar.gz
rust-96431e4b822ff82268bf3f2bbbb7aacf2abc5761.zip
Use explicit LLDB commands instead of `print`/`p` aliases.
Diffstat (limited to 'tests/debuginfo/method-on-enum.rs')
-rw-r--r--tests/debuginfo/method-on-enum.rs30
1 files changed, 15 insertions, 15 deletions
diff --git a/tests/debuginfo/method-on-enum.rs b/tests/debuginfo/method-on-enum.rs
index f947ba350e7..8a57060717e 100644
--- a/tests/debuginfo/method-on-enum.rs
+++ b/tests/debuginfo/method-on-enum.rs
@@ -63,47 +63,47 @@
 // lldb-command:run
 
 // STACK BY REF
-// lldb-command:print *self
+// lldb-command:v *self
 // lldb-check:[...] Variant2(117901063)
-// lldb-command:print arg1
+// lldb-command:v arg1
 // lldb-check:[...] -1
-// lldb-command:print arg2
+// lldb-command:v arg2
 // lldb-check:[...] -2
 // lldb-command:continue
 
 // STACK BY VAL
-// lldb-command:print self
+// lldb-command:v self
 // lldb-check:[...] Variant2(117901063)
-// lldb-command:print arg1
+// lldb-command:v arg1
 // lldb-check:[...] -3
-// lldb-command:print arg2
+// lldb-command:v arg2
 // lldb-check:[...] -4
 // lldb-command:continue
 
 // OWNED BY REF
-// lldb-command:print *self
+// lldb-command:v *self
 // lldb-check:[...] Variant1 { x: 1799, y: 1799 }
-// lldb-command:print arg1
+// lldb-command:v arg1
 // lldb-check:[...] -5
-// lldb-command:print arg2
+// lldb-command:v arg2
 // lldb-check:[...] -6
 // lldb-command:continue
 
 // OWNED BY VAL
-// lldb-command:print self
+// lldb-command:v self
 // lldb-check:[...] Variant1 { x: 1799, y: 1799 }
-// lldb-command:print arg1
+// lldb-command:v arg1
 // lldb-check:[...] -7
-// lldb-command:print arg2
+// lldb-command:v arg2
 // lldb-check:[...] -8
 // lldb-command:continue
 
 // OWNED MOVED
-// lldb-command:print *self
+// lldb-command:v *self
 // lldb-check:[...] Variant1 { x: 1799, y: 1799 }
-// lldb-command:print arg1
+// lldb-command:v arg1
 // lldb-check:[...] -9
-// lldb-command:print arg2
+// lldb-command:v arg2
 // lldb-check:[...] -10
 // lldb-command:continue