summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gdb/testsuite/ChangeLog18
-rw-r--r--gdb/testsuite/Makefile.in13
-rw-r--r--gdb/testsuite/gdb.ada/Makefile.in2
-rw-r--r--gdb/testsuite/gdb.arch/Makefile.in2
-rw-r--r--gdb/testsuite/gdb.asm/Makefile.in2
-rw-r--r--gdb/testsuite/gdb.base/Makefile.in2
-rw-r--r--gdb/testsuite/gdb.cell/Makefile.in2
-rw-r--r--gdb/testsuite/gdb.cp/Makefile.in2
-rw-r--r--gdb/testsuite/gdb.disasm/Makefile.in2
-rw-r--r--gdb/testsuite/gdb.dwarf2/Makefile.in2
-rw-r--r--gdb/testsuite/gdb.fortran/Makefile.in2
-rw-r--r--gdb/testsuite/gdb.hp/Makefile.in2
-rw-r--r--gdb/testsuite/gdb.java/Makefile.in2
-rw-r--r--gdb/testsuite/gdb.mi/Makefile.in2
-rw-r--r--gdb/testsuite/gdb.modula2/Makefile.in2
-rw-r--r--gdb/testsuite/gdb.multi/Makefile.in2
-rw-r--r--gdb/testsuite/gdb.objc/Makefile.in2
-rw-r--r--gdb/testsuite/gdb.opencl/Makefile.in2
-rw-r--r--gdb/testsuite/gdb.opt/Makefile.in2
-rw-r--r--gdb/testsuite/gdb.pascal/Makefile.in2
-rw-r--r--gdb/testsuite/gdb.python/Makefile.in2
-rw-r--r--gdb/testsuite/gdb.reverse/Makefile.in2
-rw-r--r--gdb/testsuite/gdb.server/Makefile.in2
-rw-r--r--gdb/testsuite/gdb.stabs/Makefile.in2
-rw-r--r--gdb/testsuite/gdb.threads/Makefile.in2
-rw-r--r--gdb/testsuite/gdb.trace/Makefile.in2
-rw-r--r--gdb/testsuite/gdb.xml/Makefile.in2
27 files changed, 49 insertions, 32 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index 6394c5862c3..86a176c4d9b 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,5 +1,23 @@
2011-02-22 Michael Snyder <msnyder@vmware.com>
+ * Makefile.in: Make more clean.
+ * gdb.ada/Makefile.in: Ditto.
+ * gdb.arch/Makefile.in: Ditto.
+ * gdb.asm/Makefile.in: Ditto.
+ * gdb.base/Makefile.in: Ditto.
+ * gdb.cp/Makefile.in: Ditto.
+ * gdb.dwarf2/Makefile.in: Ditto.
+ * gdb.java/Makefile.in: Ditto.
+ * gdb.mi/Makefile.in: Ditto.
+ * gdb.modula2/Makefile.in: Ditto.
+ * gdb.python/Makefile.in: Ditto.
+ * gdb.server/Makefile.in: Ditto.
+ * gdb.stabs/Makefile.in: Ditto.
+ * gdb.threads/Makefile.in: Ditto.
+ * gdb.trace/Makefile.in: Ditto.
+
+2011-02-22 Michael Snyder <msnyder@vmware.com>
+
* gdb.threads/thread-find.exp: Add tests for bad input to
info threads.
diff --git a/gdb/testsuite/Makefile.in b/gdb/testsuite/Makefile.in
index 970894e8946..17d0b1a4b19 100644
--- a/gdb/testsuite/Makefile.in
+++ b/gdb/testsuite/Makefile.in
@@ -33,11 +33,10 @@ SHELL = @SHELL@
EXEEXT = @EXEEXT@
SUBDIRS = @subdirs@
RPATH_ENVVAR = @RPATH_ENVVAR@
-ALL_SUBDIRS = gdb.ada gdb.arch gdb.asm gdb.base gdb.cp gdb.disasm \
- gdb.dwarf2 gdb.stabs \
- gdb.fortran gdb.server gdb.java gdb.mi gdb.multi \
- gdb.objc gdb.opencl gdb.opt gdb.pascal gdb.python gdb.threads \
- gdb.trace gdb.xml \
+ALL_SUBDIRS = gdb.ada gdb.arch gdb.asm gdb.base gdb.cell gdb.cp gdb.disasm \
+ gdb.dwarf2 gdb.fortran gdb.gdb gdb.java gdb.mi gdb.modula2 gdb.multi \
+ gdb.objc gdb.opencl gdb.opt gdb.pascal gdb.python gdb.server \
+ gdb.reverse gdb.threads gdb.trace gdb.xml \
$(SUBDIRS)
EXPECT = `if [ -f $${rootme}/../../expect/expect ] ; then \
@@ -212,8 +211,8 @@ subdirs:
done
clean mostlyclean:
- -rm -f *~ core *.o a.out xgdb *.x *.grt bigcore.corefile
- -rm - core.*
+ -rm -f *~ core *.o a.out xgdb *.x *.grt bigcore.corefile .gdb_history
+ -rm -f core.* *.tf *.cl *.py tracecommandsscript copy1.txt zzz-gdbscript
if [ x"${ALL_SUBDIRS}" != x ] ; then \
for dir in ${ALL_SUBDIRS}; \
do \
diff --git a/gdb/testsuite/gdb.ada/Makefile.in b/gdb/testsuite/gdb.ada/Makefile.in
index 5229489a5b2..9b8a41736f1 100644
--- a/gdb/testsuite/gdb.ada/Makefile.in
+++ b/gdb/testsuite/gdb.ada/Makefile.in
@@ -60,5 +60,5 @@ clean mostlyclean:
distclean maintainer-clean realclean: clean
-rm -f *~ core
-rm -f Makefile config.status config.log
- -rm -f *-init.exp
+ -rm -f *-init.exp gdb.log gdb.sum
-rm -fr *.log summary detail *.plog *.sum *.psum site.*
diff --git a/gdb/testsuite/gdb.arch/Makefile.in b/gdb/testsuite/gdb.arch/Makefile.in
index d459585c0ef..b30af2bb054 100644
--- a/gdb/testsuite/gdb.arch/Makefile.in
+++ b/gdb/testsuite/gdb.arch/Makefile.in
@@ -15,5 +15,5 @@ clean mostlyclean:
distclean maintainer-clean realclean: clean
-rm -f *~ core
-rm -f Makefile config.status config.log
- -rm -f *-init.exp
+ -rm -f *-init.exp gdb.log gdb.sum
-rm -fr *.log summary detail *.plog *.sum *.psum site.*
diff --git a/gdb/testsuite/gdb.asm/Makefile.in b/gdb/testsuite/gdb.asm/Makefile.in
index 3210e1faa4f..3e2162d2fc5 100644
--- a/gdb/testsuite/gdb.asm/Makefile.in
+++ b/gdb/testsuite/gdb.asm/Makefile.in
@@ -15,5 +15,5 @@ clean mostlyclean:
distclean maintainer-clean realclean: clean
-rm -f *~ core
-rm -f Makefile config.status config.log
- -rm -f *-init.exp
+ -rm -f *-init.exp gdb.log gdb.sum
-rm -fr *.log summary detail *.plog *.sum *.psum site.*
diff --git a/gdb/testsuite/gdb.base/Makefile.in b/gdb/testsuite/gdb.base/Makefile.in
index a19832034a7..e80209ac7be 100644
--- a/gdb/testsuite/gdb.base/Makefile.in
+++ b/gdb/testsuite/gdb.base/Makefile.in
@@ -62,5 +62,5 @@ clean mostlyclean:
distclean maintainer-clean realclean: clean
-rm -f *~ core
-rm -f Makefile config.status config.log
- -rm -f *-init.exp
+ -rm -f *-init.exp gdb.log gdb.sum
-rm -fr *.log summary detail *.plog *.sum *.psum site.*
diff --git a/gdb/testsuite/gdb.cell/Makefile.in b/gdb/testsuite/gdb.cell/Makefile.in
index a0d0d78e48a..8b6675d31df 100644
--- a/gdb/testsuite/gdb.cell/Makefile.in
+++ b/gdb/testsuite/gdb.cell/Makefile.in
@@ -16,5 +16,5 @@ clean mostlyclean:
distclean maintainer-clean realclean: clean
-rm -f *~ core
-rm -f Makefile config.status config.log
- -rm -f *-init.exp
+ -rm -f *-init.exp gdb.log gdb.sum
-rm -fr *.log summary detail *.plog *.sum *.psum site.*
diff --git a/gdb/testsuite/gdb.cp/Makefile.in b/gdb/testsuite/gdb.cp/Makefile.in
index 62bb3fa8624..c4a1ec2a417 100644
--- a/gdb/testsuite/gdb.cp/Makefile.in
+++ b/gdb/testsuite/gdb.cp/Makefile.in
@@ -24,4 +24,4 @@ clean mostlyclean:
-rm -f core ${EXECUTABLES}
distclean maintainer-clean realclean: clean
- -rm -f Makefile config.status config.log
+ -rm -f Makefile config.status config.log gdb.log gdb.sum
diff --git a/gdb/testsuite/gdb.disasm/Makefile.in b/gdb/testsuite/gdb.disasm/Makefile.in
index 0db2a26ca1b..34492f269de 100644
--- a/gdb/testsuite/gdb.disasm/Makefile.in
+++ b/gdb/testsuite/gdb.disasm/Makefile.in
@@ -10,4 +10,4 @@ clean mostlyclean:
-rm -f *.o *.diff *~ *.bad core h8300s hppa mn10300 sh3
distclean maintainer-clean realclean: clean
- -rm -f Makefile config.status config.log
+ -rm -f Makefile config.status config.log gdb.log gdb.sum
diff --git a/gdb/testsuite/gdb.dwarf2/Makefile.in b/gdb/testsuite/gdb.dwarf2/Makefile.in
index db7046f500d..5f2d0f3efc6 100644
--- a/gdb/testsuite/gdb.dwarf2/Makefile.in
+++ b/gdb/testsuite/gdb.dwarf2/Makefile.in
@@ -35,5 +35,5 @@ clean mostlyclean:
distclean maintainer-clean realclean: clean
-rm -f *~ core
-rm -f Makefile config.status config.log
- -rm -f *-init.exp
+ -rm -f *-init.exp gdb.log gdb.sum
-rm -fr *.log summary detail *.plog *.sum *.psum site.*
diff --git a/gdb/testsuite/gdb.fortran/Makefile.in b/gdb/testsuite/gdb.fortran/Makefile.in
index d83d53f8fa8..2a953f35bd4 100644
--- a/gdb/testsuite/gdb.fortran/Makefile.in
+++ b/gdb/testsuite/gdb.fortran/Makefile.in
@@ -31,4 +31,4 @@ clean mostlyclean:
-rm -f core ${EXECUTABLES}
distclean maintainer-clean realclean: clean
- -rm -f Makefile config.status config.log
+ -rm -f Makefile config.status config.log gdb.log gdb.sum
diff --git a/gdb/testsuite/gdb.hp/Makefile.in b/gdb/testsuite/gdb.hp/Makefile.in
index 2a1a9df175b..3bcceaf87b0 100644
--- a/gdb/testsuite/gdb.hp/Makefile.in
+++ b/gdb/testsuite/gdb.hp/Makefile.in
@@ -28,7 +28,7 @@ clean mostlyclean:
distclean maintainer-clean realclean: clean
-rm -f Makefile config.status config.log
- -rm -f *-init.exp
+ -rm -f *-init.exp gdb.log gdb.sum
-rm -fr *.log summary detail *.plog *.sum *.psum site.*
if [ x"${SUBDIRS}" != x ] ; then \
for dir in ${SUBDIRS}; \
diff --git a/gdb/testsuite/gdb.java/Makefile.in b/gdb/testsuite/gdb.java/Makefile.in
index 8c33c20b25d..cc0b5752f85 100644
--- a/gdb/testsuite/gdb.java/Makefile.in
+++ b/gdb/testsuite/gdb.java/Makefile.in
@@ -18,4 +18,4 @@ clean mostlyclean:
-rm -f *.o ${OBJS} *.class *.exe *~ core jmain jmisc jnpe jprint
distclean maintainer-clean realclean: clean
- -rm -f Makefile config.status config.log
+ -rm -f Makefile config.status config.log gdb.log gdb.sum
diff --git a/gdb/testsuite/gdb.mi/Makefile.in b/gdb/testsuite/gdb.mi/Makefile.in
index 22174edb4eb..be0526d9b27 100644
--- a/gdb/testsuite/gdb.mi/Makefile.in
+++ b/gdb/testsuite/gdb.mi/Makefile.in
@@ -23,4 +23,4 @@ clean mostlyclean:
-rm -f $(MISCELLANEOUS)
distclean maintainer-clean realclean: clean
- -rm -f Makefile config.status config.log
+ -rm -f Makefile config.status config.log gdb.log gdb.sum
diff --git a/gdb/testsuite/gdb.modula2/Makefile.in b/gdb/testsuite/gdb.modula2/Makefile.in
index 97cb2807155..bcf345f1a01 100644
--- a/gdb/testsuite/gdb.modula2/Makefile.in
+++ b/gdb/testsuite/gdb.modula2/Makefile.in
@@ -30,4 +30,4 @@ clean mostlyclean:
-rm -f core ${EXECUTABLES}
distclean maintainer-clean realclean: clean
- -rm -f Makefile config.status config.log
+ -rm -f Makefile config.status config.log gdb.log gdb.sum
diff --git a/gdb/testsuite/gdb.multi/Makefile.in b/gdb/testsuite/gdb.multi/Makefile.in
index 8c3415962dc..812ed13f662 100644
--- a/gdb/testsuite/gdb.multi/Makefile.in
+++ b/gdb/testsuite/gdb.multi/Makefile.in
@@ -11,4 +11,4 @@ clean mostlyclean:
-rm -f core $(EXECUTABLES)
distclean maintainer-clean realclean: clean
- -rm -f Makefile config.status config.log
+ -rm -f Makefile config.status config.log gdb.log gdb.sum
diff --git a/gdb/testsuite/gdb.objc/Makefile.in b/gdb/testsuite/gdb.objc/Makefile.in
index 381e48a0789..4d20c481820 100644
--- a/gdb/testsuite/gdb.objc/Makefile.in
+++ b/gdb/testsuite/gdb.objc/Makefile.in
@@ -19,4 +19,4 @@ clean mostlyclean:
-rm -f core ${EXECUTABLES}
distclean maintainer-clean realclean: clean
- -rm -f Makefile config.status config.log
+ -rm -f Makefile config.status config.log gdb.log gdb.sum
diff --git a/gdb/testsuite/gdb.opencl/Makefile.in b/gdb/testsuite/gdb.opencl/Makefile.in
index 7dec34c2df8..cb025ce6c77 100644
--- a/gdb/testsuite/gdb.opencl/Makefile.in
+++ b/gdb/testsuite/gdb.opencl/Makefile.in
@@ -13,5 +13,5 @@ clean mostlyclean:
distclean maintainer-clean realclean: clean
-rm -f *~ core
-rm -f Makefile config.status config.log
- -rm -f *-init.exp
+ -rm -f *-init.exp gdb.log gdb.sum
-rm -fr *.log summary detail *.plog *.sum *.psum site.*
diff --git a/gdb/testsuite/gdb.opt/Makefile.in b/gdb/testsuite/gdb.opt/Makefile.in
index a35e59a42b7..669e53b99f6 100644
--- a/gdb/testsuite/gdb.opt/Makefile.in
+++ b/gdb/testsuite/gdb.opt/Makefile.in
@@ -20,5 +20,5 @@ clean mostlyclean:
distclean maintainer-clean realclean: clean
-rm -f *~ core
-rm -f Makefile config.status config.log
- -rm -f *-init.exp
+ -rm -f *-init.exp gdb.log gdb.sum
-rm -fr *.log summary detail *.plog *.sum *.psum site.*
diff --git a/gdb/testsuite/gdb.pascal/Makefile.in b/gdb/testsuite/gdb.pascal/Makefile.in
index 431a4c7ead7..0427a8f3394 100644
--- a/gdb/testsuite/gdb.pascal/Makefile.in
+++ b/gdb/testsuite/gdb.pascal/Makefile.in
@@ -20,5 +20,5 @@ clean mostlyclean:
distclean maintainer-clean realclean: clean
-rm -f *~ core
-rm -f Makefile config.status config.log
- -rm -f *-init.exp
+ -rm -f *-init.exp gdb.log gdb.sum
-rm -fr *.log summary detail *.plog *.sum *.psum site.*
diff --git a/gdb/testsuite/gdb.python/Makefile.in b/gdb/testsuite/gdb.python/Makefile.in
index b321d53cdf6..2b26fc866f3 100644
--- a/gdb/testsuite/gdb.python/Makefile.in
+++ b/gdb/testsuite/gdb.python/Makefile.in
@@ -16,4 +16,4 @@ clean mostlyclean:
-rm -f core $(EXECUTABLES) $(MISCELLANEOUS)
distclean maintainer-clean realclean: clean
- -rm -f Makefile config.status config.log
+ -rm -f Makefile config.status config.log gdb.log gdb.sum
diff --git a/gdb/testsuite/gdb.reverse/Makefile.in b/gdb/testsuite/gdb.reverse/Makefile.in
index 513c88486d4..bbde5193827 100644
--- a/gdb/testsuite/gdb.reverse/Makefile.in
+++ b/gdb/testsuite/gdb.reverse/Makefile.in
@@ -15,5 +15,5 @@ clean mostlyclean:
rm -f $(EXECUTABLES) $(MISCELLANEOUS)
distclean maintainer-clean realclean: clean
- rm -f Makefile config.status config.log site.*
+ rm -f Makefile config.status config.log site.* gdb.log gdb.sum
diff --git a/gdb/testsuite/gdb.server/Makefile.in b/gdb/testsuite/gdb.server/Makefile.in
index 2a8c2d32bfa..eb1981e4c8c 100644
--- a/gdb/testsuite/gdb.server/Makefile.in
+++ b/gdb/testsuite/gdb.server/Makefile.in
@@ -20,5 +20,5 @@ clean mostlyclean:
distclean maintainer-clean realclean: clean
-rm -f *~ core
-rm -f Makefile config.status config.log
- -rm -f *-init.exp
+ -rm -f *-init.exp gdb.log gdb.sum
-rm -fr *.log summary detail *.plog *.sum *.psum site.*
diff --git a/gdb/testsuite/gdb.stabs/Makefile.in b/gdb/testsuite/gdb.stabs/Makefile.in
index 03e9bd2bb8a..ff470ed4c0f 100644
--- a/gdb/testsuite/gdb.stabs/Makefile.in
+++ b/gdb/testsuite/gdb.stabs/Makefile.in
@@ -10,7 +10,7 @@ clean mostlyclean:
-rm -f *.o *~ core tmp.c tmp.s weird.s errs exclfwd gdb11479
distclean maintainer-clean realclean: clean
- -rm -f Makefile config.status config.log
+ -rm -f Makefile config.status config.log gdb.log gdb.sum
Makefile: $(srcdir)/Makefile.in $(srcdir)/configure.ac
$(SHELL) ./config.status --recheck
diff --git a/gdb/testsuite/gdb.threads/Makefile.in b/gdb/testsuite/gdb.threads/Makefile.in
index 1df0c8bebc6..df70a511c57 100644
--- a/gdb/testsuite/gdb.threads/Makefile.in
+++ b/gdb/testsuite/gdb.threads/Makefile.in
@@ -19,4 +19,4 @@ clean mostlyclean:
-rm -f *~ *.o a.out xgdb *.x *.ci *.tmp core* $(EXECUTABLES) gcore.test
distclean maintainer-clean realclean: clean
- -rm -f Makefile config.status config.log config.h
+ -rm -f Makefile config.status config.log config.h gdb.log gdb.sum
diff --git a/gdb/testsuite/gdb.trace/Makefile.in b/gdb/testsuite/gdb.trace/Makefile.in
index bf372356843..7e719e24606 100644
--- a/gdb/testsuite/gdb.trace/Makefile.in
+++ b/gdb/testsuite/gdb.trace/Makefile.in
@@ -15,4 +15,4 @@ clean mostlyclean:
-rm -f *.o *.diff *~ *.bad core sh3 hppa mn10300 $(PROGS)
distclean maintainer-clean realclean: clean
- -rm -f Makefile config.status config.log
+ -rm -f Makefile config.status config.log gdb.log gdb.sum
diff --git a/gdb/testsuite/gdb.xml/Makefile.in b/gdb/testsuite/gdb.xml/Makefile.in
index 01c3cf5b406..7143134d635 100644
--- a/gdb/testsuite/gdb.xml/Makefile.in
+++ b/gdb/testsuite/gdb.xml/Makefile.in
@@ -10,4 +10,4 @@ clean mostlyclean:
-rm -f *.ci *.o $(OBJS) $(PROGS) *~ core
distclean maintainer-clean realclean: clean
- -rm -f Makefile
+ -rm -f Makefile gdb.log gdb.sum