about summary refs log tree commit diff
path: root/tests/debuginfo/borrowed-unique-basic.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/borrowed-unique-basic.rs
parent2047e847d7234117bf96583be3dcc4fb0f42d0bf (diff)
downloadrust-96431e4b822ff82268bf3f2bbbb7aacf2abc5761.tar.gz
rust-96431e4b822ff82268bf3f2bbbb7aacf2abc5761.zip
Use explicit LLDB commands instead of `print`/`p` aliases.
Diffstat (limited to 'tests/debuginfo/borrowed-unique-basic.rs')
-rw-r--r--tests/debuginfo/borrowed-unique-basic.rs26
1 files changed, 13 insertions, 13 deletions
diff --git a/tests/debuginfo/borrowed-unique-basic.rs b/tests/debuginfo/borrowed-unique-basic.rs
index 38e6ce0a6ae..d6948a12851 100644
--- a/tests/debuginfo/borrowed-unique-basic.rs
+++ b/tests/debuginfo/borrowed-unique-basic.rs
@@ -55,11 +55,11 @@
 // lldb-command:type format add -f decimal 'unsigned char'
 // lldb-command:run
 
-// lldb-command:print *bool_ref
+// lldb-command:v *bool_ref
 // lldbg-check:[...] true
 // lldbr-check:(bool) *bool_ref = true
 
-// lldb-command:print *int_ref
+// lldb-command:v *int_ref
 // lldbg-check:[...] -1
 // lldbr-check:(isize) *int_ref = -1
 
@@ -67,47 +67,47 @@
 // lldbr-command:print *char_ref
 // lldbr-check:(char) *char_ref = 97
 
-// lldb-command:print *i8_ref
+// lldb-command:v *i8_ref
 // lldbg-check:[...] 68
 // lldbr-check:(i8) *i8_ref = 68
 
-// lldb-command:print *i16_ref
+// lldb-command:v *i16_ref
 // lldbg-check:[...] -16
 // lldbr-check:(i16) *i16_ref = -16
 
-// lldb-command:print *i32_ref
+// lldb-command:v *i32_ref
 // lldbg-check:[...] -32
 // lldbr-check:(i32) *i32_ref = -32
 
-// lldb-command:print *i64_ref
+// lldb-command:v *i64_ref
 // lldbg-check:[...] -64
 // lldbr-check:(i64) *i64_ref = -64
 
-// lldb-command:print *uint_ref
+// lldb-command:v *uint_ref
 // lldbg-check:[...] 1
 // lldbr-check:(usize) *uint_ref = 1
 
-// lldb-command:print *u8_ref
+// lldb-command:v *u8_ref
 // lldbg-check:[...] 100
 // lldbr-check:(u8) *u8_ref = 100
 
-// lldb-command:print *u16_ref
+// lldb-command:v *u16_ref
 // lldbg-check:[...] 16
 // lldbr-check:(u16) *u16_ref = 16
 
-// lldb-command:print *u32_ref
+// lldb-command:v *u32_ref
 // lldbg-check:[...] 32
 // lldbr-check:(u32) *u32_ref = 32
 
-// lldb-command:print *u64_ref
+// lldb-command:v *u64_ref
 // lldbg-check:[...] 64
 // lldbr-check:(u64) *u64_ref = 64
 
-// lldb-command:print *f32_ref
+// lldb-command:v *f32_ref
 // lldbg-check:[...] 2.5
 // lldbr-check:(f32) *f32_ref = 2.5
 
-// lldb-command:print *f64_ref
+// lldb-command:v *f64_ref
 // lldbg-check:[...] 3.5
 // lldbr-check:(f64) *f64_ref = 3.5