diff options
Diffstat (limited to 'gdb/testsuite/gdb.base/commands.exp')
-rw-r--r-- | gdb/testsuite/gdb.base/commands.exp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/testsuite/gdb.base/commands.exp b/gdb/testsuite/gdb.base/commands.exp index ee7bd38..8c06e8c 100644 --- a/gdb/testsuite/gdb.base/commands.exp +++ b/gdb/testsuite/gdb.base/commands.exp @@ -476,14 +476,14 @@ proc_with_prefix deprecated_command_test {} { gdb_test "p 5" \ "Warning: 'p', an alias for the command 'print' is deprecated.*Use 'new_p'.*" \ "p deprecated warning, with replacement" - gdb_test "p 5" ".\[0-9\]* = 5.*" "Deprecated warning goes away /1/" + gdb_test "p 5" ".\[0-9\]* = 5.*" "deprecated warning goes away /1/" gdb_test_no_output "maintenance deprecate p \"new_p\"" "maintenance deprecate p \"new_p\" /2/" gdb_test_no_output "maintenance deprecate print \"new_print\"" gdb_test "p 5" \ "Warning: command 'print' \\(p\\) is deprecated.*Use 'new_print'.*" \ "both alias and command are deprecated" - gdb_test "p 5" ".\[0-9\]* = 5.*" "Deprecated warning goes away /2/" + gdb_test "p 5" ".\[0-9\]* = 5.*" "deprecated warning goes away /2/" gdb_test_no_output "maintenance deprecate set remote memory-read-packet-size \"srm\" " \ "deprecate long command /1/" |