aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorPeter Schauer <Peter.Schauer@mytum.de>1993-04-16 16:39:49 +0000
committerPeter Schauer <Peter.Schauer@mytum.de>1993-04-16 16:39:49 +0000
commit987b4233ae5e582c2c5d9a0c023a3e27d8fb3a05 (patch)
tree006a231ca19f8d013448fc8ce7740129046fa70b /gdb
parentdd052d9a4bce268e16233b7152a6e0081f42a0d4 (diff)
downloadgdb-987b4233ae5e582c2c5d9a0c023a3e27d8fb3a05.zip
gdb-987b4233ae5e582c2c5d9a0c023a3e27d8fb3a05.tar.gz
gdb-987b4233ae5e582c2c5d9a0c023a3e27d8fb3a05.tar.bz2
* config/unix-gdb.exp: Add back missing return 0 which mysteriously
disappeared.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/testsuite/ChangeLog5
-rw-r--r--gdb/testsuite/config/unix-gdb.exp3
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