about summary refs log tree commit diff
path: root/tests/debuginfo/coroutine-objects.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/coroutine-objects.rs
parent2047e847d7234117bf96583be3dcc4fb0f42d0bf (diff)
downloadrust-96431e4b822ff82268bf3f2bbbb7aacf2abc5761.tar.gz
rust-96431e4b822ff82268bf3f2bbbb7aacf2abc5761.zip
Use explicit LLDB commands instead of `print`/`p` aliases.
Diffstat (limited to 'tests/debuginfo/coroutine-objects.rs')
-rw-r--r--tests/debuginfo/coroutine-objects.rs16
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/debuginfo/coroutine-objects.rs b/tests/debuginfo/coroutine-objects.rs
index 9f14cb3f8ec..9e1bd5d62e7 100644
--- a/tests/debuginfo/coroutine-objects.rs
+++ b/tests/debuginfo/coroutine-objects.rs
@@ -25,17 +25,17 @@
 // === LLDB TESTS ==================================================================================
 
 // lldb-command:run
-// lldb-command:print b
-// lldbg-check:(coroutine_objects::main::{coroutine_env#0})
+// lldb-command:v b
+// lldbg-check:(coroutine_objects::main::{coroutine_env#0}) b =
 // lldb-command:continue
-// lldb-command:print b
-// lldbg-check:(coroutine_objects::main::{coroutine_env#0})
+// lldb-command:v b
+// lldbg-check:(coroutine_objects::main::{coroutine_env#0}) b =
 // lldb-command:continue
-// lldb-command:print b
-// lldbg-check:(coroutine_objects::main::{coroutine_env#0})
+// lldb-command:v b
+// lldbg-check:(coroutine_objects::main::{coroutine_env#0}) b =
 // lldb-command:continue
-// lldb-command:print b
-// lldbg-check:(coroutine_objects::main::{coroutine_env#0})
+// lldb-command:v b
+// lldbg-check:(coroutine_objects::main::{coroutine_env#0}) b =
 
 // === CDB TESTS ===================================================================================