aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2000-06-07 04:14:02 +0000
committerAndrew Cagney <cagney@redhat.com>2000-06-07 04:14:02 +0000
commit17c579bd622026e9c05a0b8893e10a26470c3569 (patch)
treeef8c28f6f3fff3d052d35527d45e51f8dbcf3540 /gdb
parent638632bd1c23e318b7e7e28c3a004fdb1387a944 (diff)
downloadfsf-binutils-gdb-17c579bd622026e9c05a0b8893e10a26470c3569.zip
fsf-binutils-gdb-17c579bd622026e9c05a0b8893e10a26470c3569.tar.gz
fsf-binutils-gdb-17c579bd622026e9c05a0b8893e10a26470c3569.tar.bz2
Use ``set remote memory-read-packet-size'' instead of ``set endian
big'' in deprecate test.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/testsuite/ChangeLog6
-rw-r--r--gdb/testsuite/gdb.base/commands.exp8
2 files changed, 10 insertions, 4 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index a4e8bb9..471a9de 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,3 +1,9 @@
+Wed Jun 7 13:02:40 2000 Andrew Cagney <cagney@b1.cygnus.com>
+
+ * gdb.base/commands.exp: Use ``set remote
+ memory-read-packet-size'' instead of ``set endian big'' to test
+ long commands.
+
2000-06-03 Daniel Berlin <dan@cgsoftware.com>
* gdb.c++/templates.exp (do_tests): Make all of these work under
diff --git a/gdb/testsuite/gdb.base/commands.exp b/gdb/testsuite/gdb.base/commands.exp
index f25f32f..a9d608a 100644
--- a/gdb/testsuite/gdb.base/commands.exp
+++ b/gdb/testsuite/gdb.base/commands.exp
@@ -391,11 +391,11 @@ proc deprecated_command_test {} {
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"
- gdb_test "maintenance deprecate set endian big \"seb\" " "" "deprecate long comamnd"
- gdb_test "set endian big" "Warning: command 'set endian big' is deprecated.*Use 'seb'.*" "long command deprecated"
+ gdb_test "maintenance deprecate set remote memory-read-packet-size \"srm\" " "" "deprecate long comamnd"
+ gdb_test "set remote memory-read-packet-size" "Warning: command 'set remote memory-read-packet-size' is deprecated.*Use 'srm'.*" "long command deprecated"
- gdb_test "maintenance deprecate set endian big" "" "deprecate long comamnd"
- gdb_test "set endian big" "Warning: command 'set endian big' is deprecated.*No alternative known.*" "long command deprecated with no alternative."
+ gdb_test "maintenance deprecate set remote memory-read-packet-size" "" "deprecate long comamnd"
+ gdb_test "set remote memory-read-packet-size" "Warning: command 'set remote memory-read-packet-size' is deprecated.*No alternative known.*" "long command deprecated with no alternative."
gdb_test "maintenance deprecate" "\"maintenance deprecate\".*" "deprecate with no arguments"
}