diff options
author | Stan Shebs <shebs@apple.com> | 1999-05-11 13:35:55 +0000 |
---|---|---|
committer | Stan Shebs <shebs@apple.com> | 1999-05-11 13:35:55 +0000 |
commit | d8ddec32b1a36b9336dda8682ea4912f43fb461b (patch) | |
tree | e34815c29fb06b2aa25d61e9e4c2ae292d3c3bad /gdb/testsuite | |
parent | a47ab2a209c4bc8625f0868fd0df4a84cceb0480 (diff) | |
download | gdb-d8ddec32b1a36b9336dda8682ea4912f43fb461b.tar.gz |
import gdb-1999-05-10
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 4a5eec12f55..c5e2362bb6d 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 a5d637438bd..11cf1da9095 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 e9d7da03470..f8a25f94d5e 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; |