diff options
Diffstat (limited to 'gdb/testsuite')
-rw-r--r-- | gdb/testsuite/ChangeLog | 16 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/Makefile.in | 6 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/annota2.cc | 2 |
3 files changed, 19 insertions, 5 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 4a5eec1..c5e2362 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,19 @@ +1999-05-06 Keith Seitz <keiths@cygnus.com> + + * gdb.base/annota2.cc: Include stdio.h. + +Wed May 5 17:44:31 1999 Stan Shebs <shebs@andros.cygnus.com> + + * gdb.base/crossload.exp: Remove, this has been disabled ever + since BFD stopped including all targets, and cross-GDB gets + plenty of testing anyway. + * gdb.base/i486-elf.u, gdb.base/m68k-aout.u, gdb.base/m68k-elf.u, + gdb.base/sparc-aout.u, gdb.base/i860-elf.u, gdb.base/m68k-aout2.u, + gdb.base/mips-ecoff.u, gdb.base/sparc-elf.u: Remove. + * gdb.base/README: Remove, was doc for this. + * gdb.base/Makefile.in (CROSS_EXECUTABLES): Remove, no longer + needed. + 1999-05-04 Elena Zannoni <ezannoni@kwikemart.cygnus.com> * gdb.base/call-ar-st.exp: Fix one regular expression in test diff --git a/gdb/testsuite/gdb.base/Makefile.in b/gdb/testsuite/gdb.base/Makefile.in index a5d6374..11cf1da 100644 --- a/gdb/testsuite/gdb.base/Makefile.in +++ b/gdb/testsuite/gdb.base/Makefile.in @@ -14,10 +14,6 @@ EXECUTABLES = all-types bitfields break \ solib so-impl-ld so-indr-cl \ step-test structs structs2 twice-tmp varargs watchpoint whatis -# uuencoded format to avoid SCCS/RCS problems with binary files. -CROSS_EXECUTABLES = i486-elf i860-elf m68k-elf m68k-aout m68k-aout2 \ - mips-ecoff sparc-aout sparc-elf - MISCELLANEOUS = coremmap.data shr1.sl shr2.sl solib1.sl solib2.sl all: @@ -32,7 +28,7 @@ installcheck: check: clean mostlyclean: - -rm -f *~ *.o a.out xgdb *.x $(CROSS_EXECUTABLES) *.ci *.tmp + -rm -f *~ *.o a.out xgdb *.x *.ci *.tmp -rm -f core core.coremaker coremaker.core corefile $(EXECUTABLES) -rm -f $(MISCELLANEOUS) twice-tmp.c diff --git a/gdb/testsuite/gdb.base/annota2.cc b/gdb/testsuite/gdb.base/annota2.cc index e9d7da03..f8a25f9 100644 --- a/gdb/testsuite/gdb.base/annota2.cc +++ b/gdb/testsuite/gdb.base/annota2.cc @@ -1,3 +1,5 @@ +#include <stdio.h> + class A { public: int x; |