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-arg-initialization.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-arg-initialization.rs')
| -rw-r--r-- | tests/debuginfo/function-arg-initialization.rs | 64 |
1 files changed, 32 insertions, 32 deletions
diff --git a/tests/debuginfo/function-arg-initialization.rs b/tests/debuginfo/function-arg-initialization.rs index 5288aa2e6f1..05935c30bea 100644 --- a/tests/debuginfo/function-arg-initialization.rs +++ b/tests/debuginfo/function-arg-initialization.rs @@ -119,99 +119,99 @@ // lldb-command:run // IMMEDIATE ARGS -// lldb-command:print a +// lldb-command:v a // lldb-check:[...] 1 -// lldb-command:print b +// lldb-command:v b // lldb-check:[...] true -// lldb-command:print c +// lldb-command:v c // lldb-check:[...] 2.5 // lldb-command:continue // NON IMMEDIATE ARGS -// lldb-command:print a +// lldb-command:v a // lldb-check:[...] BigStruct { a: 3, b: 4, c: 5, d: 6, e: 7, f: 8, g: 9, h: 10 } -// lldb-command:print b +// lldb-command:v b // lldb-check:[...] BigStruct { a: 11, b: 12, c: 13, d: 14, e: 15, f: 16, g: 17, h: 18 } // lldb-command:continue // BINDING -// lldb-command:print a +// lldb-command:v a // lldb-check:[...] 19 -// lldb-command:print b +// lldb-command:v b // lldb-check:[...] 20 -// lldb-command:print c +// lldb-command:v c // lldb-check:[...] 21.5 // lldb-command:continue // ASSIGNMENT -// lldb-command:print a +// lldb-command:v a // lldb-check:[...] 22 -// lldb-command:print b +// lldb-command:v b // lldb-check:[...] 23 -// lldb-command:print c +// lldb-command:v c // lldb-check:[...] 24.5 // lldb-command:continue // FUNCTION CALL -// lldb-command:print x +// lldb-command:v x // lldb-check:[...] 25 -// lldb-command:print y +// lldb-command:v y // lldb-check:[...] 26 -// lldb-command:print z +// lldb-command:v z // lldb-check:[...] 27.5 // lldb-command:continue // EXPR -// lldb-command:print x +// lldb-command:v x // lldb-check:[...] 28 -// lldb-command:print y +// lldb-command:v y // lldb-check:[...] 29 -// lldb-command:print z +// lldb-command:v z // lldb-check:[...] 30.5 // lldb-command:continue // RETURN EXPR -// lldb-command:print x +// lldb-command:v x // lldb-check:[...] 31 -// lldb-command:print y +// lldb-command:v y // lldb-check:[...] 32 -// lldb-command:print z +// lldb-command:v z // lldb-check:[...] 33.5 // lldb-command:continue // ARITHMETIC EXPR -// lldb-command:print x +// lldb-command:v x // lldb-check:[...] 34 -// lldb-command:print y +// lldb-command:v y // lldb-check:[...] 35 -// lldb-command:print z +// lldb-command:v z // lldb-check:[...] 36.5 // lldb-command:continue // IF EXPR -// lldb-command:print x +// lldb-command:v x // lldb-check:[...] 37 -// lldb-command:print y +// lldb-command:v y // lldb-check:[...] 38 -// lldb-command:print z +// lldb-command:v z // lldb-check:[...] 39.5 // lldb-command:continue // WHILE EXPR -// lldb-command:print x +// lldb-command:v x // lldb-check:[...] 40 -// lldb-command:print y +// lldb-command:v y // lldb-check:[...] 41 -// lldb-command:print z +// lldb-command:v z // lldb-check:[...] 42 // lldb-command:continue // LOOP EXPR -// lldb-command:print x +// lldb-command:v x // lldb-check:[...] 43 -// lldb-command:print y +// lldb-command:v y // lldb-check:[...] 44 -// lldb-command:print z +// lldb-command:v z // lldb-check:[...] 45 // lldb-command:continue |
