diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1994-02-06 23:45:18 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1994-02-06 23:45:18 +0000 |
commit | d3b06c5fcfeaaeedb798820bc3e81146b2177ae8 (patch) | |
tree | c09eeeff0bd9246d525c5597a5fd13240d3a51ce /gdb | |
parent | 4a00e1de7b94259295433df221cfd9dc9259a46f (diff) | |
download | gdb-d3b06c5fcfeaaeedb798820bc3e81146b2177ae8.zip gdb-d3b06c5fcfeaaeedb798820bc3e81146b2177ae8.tar.gz gdb-d3b06c5fcfeaaeedb798820bc3e81146b2177ae8.tar.bz2 |
* config/udi-gdb.exp (gdb_start): Don't send "set args main" to
GDB. GDB doesn't work that way (not anymore at least) on UDI.
* gdb.t01/run.exp: Don't pass extra first argument for UDI.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/testsuite/config/udi-gdb.exp | 4 |
2 files changed, 6 insertions, 4 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 2583d2a..1b3c1cd 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,9 @@ +Sun Feb 6 15:36:13 1994 Jim Kingdon (kingdon@lioth.cygnus.com) + + * config/udi-gdb.exp (gdb_start): Don't send "set args main" to + GDB. GDB doesn't work that way (not anymore at least) on UDI. + * gdb.t01/run.exp: Don't pass extra first argument for UDI. + Fri Feb 4 12:19:32 1994 Jim Kingdon (kingdon@deneb.cygnus.com) * gdb.t17/interrupt.c: If we get EINTR, don't print an error message. diff --git a/gdb/testsuite/config/udi-gdb.exp b/gdb/testsuite/config/udi-gdb.exp index a7d2f82..ae44aa8 100644 --- a/gdb/testsuite/config/udi-gdb.exp +++ b/gdb/testsuite/config/udi-gdb.exp @@ -154,10 +154,6 @@ proc gdb_start { } { # force the width to "unlimited", so no wraparound occurs send "set width 0\n" expect -re ".*$prompt $" {} - # set the default arguments to "main", so that "run" with no - # arguments will work correctly. - send "set args main\n" - expect -re ".*$prompt $" {} verbose "Setting up target, Please wait..." |