diff options
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/testsuite/ChangeLog | 16 | ||||
-rw-r--r-- | gdb/testsuite/configure.in | 9 |
2 files changed, 20 insertions, 5 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 27d12d8..065bdfd 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,19 @@ +Sun Jul 23 23:33:18 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) + + * configure.in: Reinstate setting of stabsdirs variable, fix + typo in setting up configdirs for native builds. + + * gdb.base/return.exp: Fix typo in return double test. + * gdb.base/return.c (tmp2, tmp3): Made global to inhibit the + compiler from optimizing them away. + +Fri Jul 21 11:39:34 1995 Jeff Law (law@snake.cs.utah.edu) + + * gdb.base/gdbvars.exp: Expect zero or more additional cr-lf + sequences to be echo'd by gdb when using gdb_test. + * gdb.chill/chexp.exp: Likewise. + * gdb.fortran/exprs.exp: Likewise + Thu Jul 20 13:28:36 1995 Jeffrey A. Law <law@rtl.cygnus.com> * gdb.base/a1-selftest.exp: Reset the timeout value to 30 seconds diff --git a/gdb/testsuite/configure.in b/gdb/testsuite/configure.in index ff3f1c8..61ec598 100644 --- a/gdb/testsuite/configure.in +++ b/gdb/testsuite/configure.in @@ -8,10 +8,9 @@ srcname="GDB Test Suite" # Directories to use in all configurations. configdirs="gdb.base gdb.c++ gdb.disasm" - -# Directories to use for a configuration which supports signals. -# This usually excludes cross targets. -signaldirs="gdb.signals" + +# Directories to use for a configuration which uses stabs. +stabsdirs="gdb.stabs" # per-host: @@ -53,7 +52,7 @@ esac # Chill currently doesn't link cross targets, so only config and test natives if [ "${host}" = "${target}" ] ; then - configdirs="$configdirs} gdb.chill" + configdirs="${configdirs} gdb.chill" fi # link in the lib directory if needed |