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/lexical-scope-in-unconditional-loop.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/lexical-scope-in-unconditional-loop.rs')
| -rw-r--r-- | tests/debuginfo/lexical-scope-in-unconditional-loop.rs | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/tests/debuginfo/lexical-scope-in-unconditional-loop.rs b/tests/debuginfo/lexical-scope-in-unconditional-loop.rs index cf908b1a510..b1af018f3eb 100644 --- a/tests/debuginfo/lexical-scope-in-unconditional-loop.rs +++ b/tests/debuginfo/lexical-scope-in-unconditional-loop.rs @@ -67,69 +67,69 @@ // lldb-command:run // FIRST ITERATION -// lldb-command:print x +// lldb-command:v x // lldbg-check:[...] 0 // lldbr-check:(i32) x = 0 // lldb-command:continue -// lldb-command:print x +// lldb-command:v x // lldbg-check:[...] 1 // lldbr-check:(i32) x = 1 // lldb-command:continue -// lldb-command:print x +// lldb-command:v x // lldbg-check:[...] 101 // lldbr-check:(i32) x = 101 // lldb-command:continue -// lldb-command:print x +// lldb-command:v x // lldbg-check:[...] 101 // lldbr-check:(i32) x = 101 // lldb-command:continue -// lldb-command:print x +// lldb-command:v x // lldbg-check:[...] -987 // lldbr-check:(i32) x = -987 // lldb-command:continue -// lldb-command:print x +// lldb-command:v x // lldbg-check:[...] 101 // lldbr-check:(i32) x = 101 // lldb-command:continue // SECOND ITERATION -// lldb-command:print x +// lldb-command:v x // lldbg-check:[...] 1 // lldbr-check:(i32) x = 1 // lldb-command:continue -// lldb-command:print x +// lldb-command:v x // lldbg-check:[...] 2 // lldbr-check:(i32) x = 2 // lldb-command:continue -// lldb-command:print x +// lldb-command:v x // lldbg-check:[...] 102 // lldbr-check:(i32) x = 102 // lldb-command:continue -// lldb-command:print x +// lldb-command:v x // lldbg-check:[...] 102 // lldbr-check:(i32) x = 102 // lldb-command:continue -// lldb-command:print x +// lldb-command:v x // lldbg-check:[...] -987 // lldbr-check:(i32) x = -987 // lldb-command:continue -// lldb-command:print x +// lldb-command:v x // lldbg-check:[...] 102 // lldbr-check:(i32) x = 102 // lldb-command:continue -// lldb-command:print x +// lldb-command:v x // lldbg-check:[...] 2 // lldbr-check:(i32) x = 2 // lldb-command:continue |
