diff options
| author | Markus Reiter <me@reitermark.us> | 2024-03-15 15:05:57 +0100 |
|---|---|---|
| committer | Markus Reiter <me@reitermark.us> | 2024-03-15 15:38:03 +0100 |
| commit | 96431e4b822ff82268bf3f2bbbb7aacf2abc5761 (patch) | |
| tree | af08af546034165de64300c1828de26f74863dc6 /tests/debuginfo/generic-function.rs | |
| parent | 2047e847d7234117bf96583be3dcc4fb0f42d0bf (diff) | |
| download | rust-96431e4b822ff82268bf3f2bbbb7aacf2abc5761.tar.gz rust-96431e4b822ff82268bf3f2bbbb7aacf2abc5761.zip | |
Use explicit LLDB commands instead of `print`/`p` aliases.
Diffstat (limited to 'tests/debuginfo/generic-function.rs')
| -rw-r--r-- | tests/debuginfo/generic-function.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/debuginfo/generic-function.rs b/tests/debuginfo/generic-function.rs index 5c33d0d8520..e131ebfa306 100644 --- a/tests/debuginfo/generic-function.rs +++ b/tests/debuginfo/generic-function.rs @@ -29,26 +29,26 @@ // lldb-command:run -// lldb-command:print *t0 +// lldb-command:v *t0 // lldbg-check:[...] 1 // lldbr-check:(i32) *t0 = 1 -// lldb-command:print *t1 +// lldb-command:v *t1 // lldbg-check:[...] 2.5 // lldbr-check:(f64) *t1 = 2.5 // lldb-command:continue -// lldb-command:print *t0 +// lldb-command:v *t0 // lldbg-check:[...] 3.5 // lldbr-check:(f64) *t0 = 3.5 -// lldb-command:print *t1 +// lldb-command:v *t1 // lldbg-check:[...] 4 // lldbr-check:(u16) *t1 = 4 // lldb-command:continue -// lldb-command:print *t0 +// lldb-command:v *t0 // lldbg-check:[...] 5 // lldbr-check:(i32) *t0 = 5 -// lldb-command:print *t1 +// lldb-command:v *t1 // lldbg-check:[...] { a = 6 b = 7.5 } // lldbr-check:(generic_function::Struct) *t1 = { a = 6 b = 7.5 } // lldb-command:continue |
