OSDN Git Service

Use ``set remote memory-read-packet-size'' instead of ``set endian
authorcagney <cagney>
Wed, 7 Jun 2000 04:14:01 +0000 (04:14 +0000)
committercagney <cagney>
Wed, 7 Jun 2000 04:14:01 +0000 (04:14 +0000)
big'' in deprecate test.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.base/commands.exp

index a4e8bb9..471a9de 100644 (file)
@@ -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
index f25f32f..a9d608a 100644 (file)
@@ -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"
 }