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/function-arguments.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/function-arguments.rs')
| -rw-r--r-- | tests/debuginfo/function-arguments.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/debuginfo/function-arguments.rs b/tests/debuginfo/function-arguments.rs index 84271d07b38..b0afa1d0772 100644 --- a/tests/debuginfo/function-arguments.rs +++ b/tests/debuginfo/function-arguments.rs @@ -22,18 +22,18 @@ // lldb-command:run -// lldb-command:print x +// lldb-command:v x // lldbg-check:[...] 111102 // lldbr-check:(isize) x = 111102 -// lldb-command:print y +// lldb-command:v y // lldbg-check:[...] true // lldbr-check:(bool) y = true // lldb-command:continue -// lldb-command:print a +// lldb-command:v a // lldbg-check:[...] 2000 // lldbr-check:(i32) a = 2000 -// lldb-command:print b +// lldb-command:v b // lldbg-check:[...] 3000 // lldbr-check:(i64) b = 3000 // lldb-command:continue |
