diff options
Diffstat (limited to 'gdb/testsuite/gdb.objc')
-rw-r--r-- | gdb/testsuite/gdb.objc/basicclass.exp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/testsuite/gdb.objc/basicclass.exp b/gdb/testsuite/gdb.objc/basicclass.exp index d950645..43db8e4 100644 --- a/gdb/testsuite/gdb.objc/basicclass.exp +++ b/gdb/testsuite/gdb.objc/basicclass.exp @@ -163,21 +163,21 @@ gdb_test continue \ # gdb_test "print \[self printHi\]" \ "Hi.*\\$\[0-9\] = \\(.*objc_object \\*\\) 0x\[0-9a-f\]+" \ - "Call an Objective-C method with no arguments" + "call an Objective-C method with no arguments" gdb_test "print \[self printNumber: 42\]" \ "42.*\\$\[0-9\] = 43" \ - "Call an Objective-C method with one argument" + "call an Objective-C method with one argument" # # Test printing the object description # gdb_test "print-object object" \ "BasicClass gdb test object" \ - "Use of the print-object command" + "use of the print-object command" gdb_test "po self" \ "BasicClass gdb test object" \ - "Use of the po (print-object) command" + "use of the po (print-object) command" |