summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Carlton <carlton@bactrian.org>2002-09-20 23:53:54 +0000
committerDavid Carlton <carlton@bactrian.org>2002-09-20 23:53:54 +0000
commit431fbc96f77cac9b2b08e57888c570b986400a0a (patch)
treead07d4f22babce82edeb51b68f4e05c5df655d59
parent36c0947b39e06f77df9fb683f82a8a702b995df7 (diff)
downloadgdb-431fbc96f77cac9b2b08e57888c570b986400a0a.tar.gz
2002-09-20 David Carlton <carlton@math.stanford.edu>
* carlton_runtest: New file.
-rw-r--r--gdb/testsuite/ChangeLog4
-rwxr-xr-xgdb/testsuite/carlton_runtest58
2 files changed, 62 insertions, 0 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index 37d3d6bd451..8a7841dd0c6 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,3 +1,7 @@
+2002-09-20 David Carlton <carlton@math.stanford.edu>
+
+ * carlton_runtest: New file.
+
2002-09-19 Jim Blandy <jimb@redhat.com>
* gdb.base/charset.exp, gdb.base/charset.c: New files.
diff --git a/gdb/testsuite/carlton_runtest b/gdb/testsuite/carlton_runtest
new file mode 100755
index 00000000000..de1d950bfa0
--- /dev/null
+++ b/gdb/testsuite/carlton_runtest
@@ -0,0 +1,58 @@
+#!/bin/bash
+
+# This is intended to run some of the tests that might be relevant to
+# work on carlton_dictionary-branch. I'm intending to run this
+# frequently after compiling, so I want to pick out relevant tests and
+# sort them by speed. That way, it's perhaps less of a deal if I get
+# bored in the middle of running tests and interrupt this.
+
+# 5 seconds or so each.
+FASTTESTS="gdb.base/assign.exp \
+ gdb.base/constvars.exp \
+ gdb.base/cvexpr.exp \
+ gdb.base/dump.exp \
+ gdb.base/opaque.exp \
+ gdb.base/ptype.exp \
+ gdb.base/reread.exp \
+ gdb.base/return.exp \
+ gdb.base/return2.exp \
+ gdb.base/sizeof.exp \
+ gdb.base/structs.exp \
+ gdb.base/varargs.exp \
+ gdb.c++/ambiguous.exp \
+ gdb.c++/derivation.exp \
+ gdb.c++/local.exp \
+ gdb.c++/m-data.exp \
+ gdb.c++/m-static.exp \
+ gdb.c++/method.exp"
+
+# 6 seconds or more (usually around 10).
+MEDTESTS="gdb.base/exprs.exp \
+ gdb.base/funcargs.exp \
+ gdb.base/scope.exp \
+ gdb.base/setvar.exp \
+ gdb.c++/classes.exp \
+ gdb.c++/namespace.exp \
+ gdb.c++/overload.exp \
+ gdb.c++/templates.exp \
+ gdb.c++/userdef.exp \
+ gdb.c++/virtfunc.exp"
+
+# 15 seconds or more.
+SLOWTESTS="gdb.base/callfuncs.exp \
+ gdb.base/completion.exp \
+ gdb.base/printcmds.exp \
+ gdb.c++/cplusfuncs.exp \
+ gdb.c++/demangle.exp"
+
+echo "Running fast tests."
+runtest ${FASTTESTS} 2>&1 | grep -v "^Test Run By" > /tmp/fastout
+diff -u {/tmp/,carlton_}fastout
+echo "Running medium tests."
+runtest ${MEDTESTS} 2>&1 | grep -v "^Test Run By" > /tmp/medout
+diff -u {/tmp/,carlton_}medout
+echo "Running slow tests."
+runtest ${SLOWTESTS} 2>&1 | grep -v "^Test Run By" > /tmp/slowout
+diff -u {/tmp/,carlton_}slowout
+
+echo "Done."