about summary refs log tree commit diff
path: root/tests/debuginfo/method-on-struct.rs
diff options
context:
space:
mode:
authorBen Kimock <kimockb@gmail.com>2024-08-17 17:31:49 -0400
committerBen Kimock <kimockb@gmail.com>2024-08-18 12:39:07 -0400
commitfa0e8585d4c3484c344e84ed3e639a8fd63616b8 (patch)
tree8e4aba668010664df9841ec1c6b3977009d7cd90 /tests/debuginfo/method-on-struct.rs
parent43146616710b6ea7017aed22a978f942d6eb7ca3 (diff)
downloadrust-fa0e8585d4c3484c344e84ed3e639a8fd63616b8.tar.gz
rust-fa0e8585d4c3484c344e84ed3e639a8fd63616b8.zip
Replace gdbr with gdbg
Diffstat (limited to 'tests/debuginfo/method-on-struct.rs')
-rw-r--r--tests/debuginfo/method-on-struct.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/debuginfo/method-on-struct.rs b/tests/debuginfo/method-on-struct.rs
index c2632dafc39..eef1b1043b8 100644
--- a/tests/debuginfo/method-on-struct.rs
+++ b/tests/debuginfo/method-on-struct.rs
@@ -8,7 +8,7 @@
 
 // STACK BY REF
 // gdb-command:print *self
-// gdbr-check:$1 = method_on_struct::Struct {x: 100}
+// gdb-check:$1 = method_on_struct::Struct {x: 100}
 // gdb-command:print arg1
 // gdb-check:$2 = -1
 // gdb-command:print arg2
@@ -17,7 +17,7 @@
 
 // STACK BY VAL
 // gdb-command:print self
-// gdbr-check:$4 = method_on_struct::Struct {x: 100}
+// gdb-check:$4 = method_on_struct::Struct {x: 100}
 // gdb-command:print arg1
 // gdb-check:$5 = -3
 // gdb-command:print arg2
@@ -26,7 +26,7 @@
 
 // OWNED BY REF
 // gdb-command:print *self
-// gdbr-check:$7 = method_on_struct::Struct {x: 200}
+// gdb-check:$7 = method_on_struct::Struct {x: 200}
 // gdb-command:print arg1
 // gdb-check:$8 = -5
 // gdb-command:print arg2
@@ -35,7 +35,7 @@
 
 // OWNED BY VAL
 // gdb-command:print self
-// gdbr-check:$10 = method_on_struct::Struct {x: 200}
+// gdb-check:$10 = method_on_struct::Struct {x: 200}
 // gdb-command:print arg1
 // gdb-check:$11 = -7
 // gdb-command:print arg2
@@ -44,7 +44,7 @@
 
 // OWNED MOVED
 // gdb-command:print *self
-// gdbr-check:$13 = method_on_struct::Struct {x: 200}
+// gdb-check:$13 = method_on_struct::Struct {x: 200}
 // gdb-command:print arg1
 // gdb-check:$14 = -9
 // gdb-command:print arg2