diff options
author | Peter Schauer <Peter.Schauer@mytum.de> | 1993-04-16 16:39:49 +0000 |
---|---|---|
committer | Peter Schauer <Peter.Schauer@mytum.de> | 1993-04-16 16:39:49 +0000 |
commit | 987b4233ae5e582c2c5d9a0c023a3e27d8fb3a05 (patch) | |
tree | 006a231ca19f8d013448fc8ce7740129046fa70b | |
parent | dd052d9a4bce268e16233b7152a6e0081f42a0d4 (diff) | |
download | gdb-987b4233ae5e582c2c5d9a0c023a3e27d8fb3a05.zip gdb-987b4233ae5e582c2c5d9a0c023a3e27d8fb3a05.tar.gz gdb-987b4233ae5e582c2c5d9a0c023a3e27d8fb3a05.tar.bz2 |
* config/unix-gdb.exp: Add back missing return 0 which mysteriously
disappeared.
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/testsuite/config/unix-gdb.exp | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index bc3a509..ccb503f 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +Fri Apr 16 09:33:46 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) + + * config/unix-gdb.exp: Add back missing return 0 which mysteriously + disappeared. + Thu Apr 15 02:28:24 1993 John Gilmore (gnu@cacophony.cygnus.com) * gdb.t31/Makefile.in: Avoid $< in explicit rule. diff --git a/gdb/testsuite/config/unix-gdb.exp b/gdb/testsuite/config/unix-gdb.exp index 6282f4c..6db8815 100644 --- a/gdb/testsuite/config/unix-gdb.exp +++ b/gdb/testsuite/config/unix-gdb.exp @@ -99,7 +99,8 @@ proc gdb_load { arg } { if $verbose>1 then { send_user "\t\tLoaded $arg into the $GDB\n" } - } + return 0 + } -re "has no symbol-table.*$prompt $" { error "$arg wasn't compiled with \"-g\"" return -1 |