diff options
author | Jeff Law <law@redhat.com> | 1997-05-20 15:00:01 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1997-05-20 15:00:01 +0000 |
commit | c86924cf7e3c7f31dd20cf011a81f2864f5f02b5 (patch) | |
tree | 15cce80a35d95fb6ed51d56eaec668829e93f28d | |
parent | ff82f21409746d1f9491b9c4ab13e74686ca6652 (diff) | |
download | gdb-c86924cf7e3c7f31dd20cf011a81f2864f5f02b5.zip gdb-c86924cf7e3c7f31dd20cf011a81f2864f5f02b5.tar.gz gdb-c86924cf7e3c7f31dd20cf011a81f2864f5f02b5.tar.bz2 |
* gdb.base/a2-run.exp: Change "gdb,noargs" to just "noargs".
* gdb.base/commands.exp: Likewise.
* gdb.base/setshow.exp: Likewise.
-rw-r--r-- | gdb/testsuite/ChangeLog | 20 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/setshow.exp | 2 |
2 files changed, 21 insertions, 1 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index ec92eef..39a09a6 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,5 +1,25 @@ +Tue May 20 08:58:49 1997 Jeffrey A Law (law@cygnus.com) + + * gdb.base/a2-run.exp: Change "gdb,noargs" to just "noargs". + * gdb.base/commands.exp: Likewise. + * gdb.base/setshow.exp: Likewise. + +Mon May 19 15:37:50 1997 Bob Manson <manson@charmed.cygnus.com> + + * config/monitor.exp(gdb_start): Look for gdb_prompt target + feature. + + * config/i960.exp: New file. + +Thu May 1 18:01:50 1997 Bob Manson <manson@charmed.cygnus.com> + + * gdb.base/funcargs.exp: Check for gdb,short_int target + feature instead of looking for explicit target triplets. + Mon Apr 28 17:27:40 1997 Michael Snyder <msnyder@cleaver.cygnus.com> + * gdb.base/printcmds.exp: add a couple more tests a la + "p 123DEADBEEF", to check parse_number. * top.c: change "to enable to enable" to "to enable" in a couple of help strings. diff --git a/gdb/testsuite/gdb.base/setshow.exp b/gdb/testsuite/gdb.base/setshow.exp index 4f93e1b..25819ed 100644 --- a/gdb/testsuite/gdb.base/setshow.exp +++ b/gdb/testsuite/gdb.base/setshow.exp @@ -95,7 +95,7 @@ gdb_test "set args foo bar blup baz bubble" "" "set args" gdb_test "show args" "Arguments to give program being debugged when it is started is \"foo bar blup baz bubble\"..*" "show args" # Don't test if we can't pass args or if we're using a stub. -if { ![target_info gdb,use_stub] && ![target_info gdb,noargs] } { +if { ![target_info exists gdb,use_stub] && ![target_info exists noargs] } { #test passing args gdb_test "run" "Starting program:.*foo bar blup baz bubble.*" "passing args" } |