aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/lib
diff options
context:
space:
mode:
authorKeith Seitz <keiths@cygnus>1998-06-27 00:47:35 +0000
committerKeith Seitz <keiths@cygnus>1998-06-27 00:47:35 +0000
commitf35ea21826aadb993ad6deb44f781cfbf5f90bff (patch)
tree55a304aab528fb2e2338d630e5042ba2872db0f3 /gdb/testsuite/lib
parent7f6cb62ee6bb03d33729ca8a27e3946591efc1f1 (diff)
downloadgdb-f35ea21826aadb993ad6deb44f781cfbf5f90bff.zip
gdb-f35ea21826aadb993ad6deb44f781cfbf5f90bff.tar.gz
gdb-f35ea21826aadb993ad6deb44f781cfbf5f90bff.tar.bz2
* lib/gdb.exp (gdbtk_start): Add startup for gdbtk.
* configure.in: Add options for gdbtk testsuite. * configure: Regenerate. * gdb.gdbtk: New directory to hold gdbtk tests. * gdb.gdbtk/console.{exp, test}: New console window tests.
Diffstat (limited to 'gdb/testsuite/lib')
-rw-r--r--gdb/testsuite/lib/.Sanitize31
1 files changed, 31 insertions, 0 deletions
diff --git a/gdb/testsuite/lib/.Sanitize b/gdb/testsuite/lib/.Sanitize
index 069f5f1..6bae2ba 100644
--- a/gdb/testsuite/lib/.Sanitize
+++ b/gdb/testsuite/lib/.Sanitize
@@ -33,4 +33,35 @@ Things-to-lose:
# done.
Do-last:
+
+if ( echo $* | grep lose\-gdbtk > /dev/null ) ; then
+ echo Catering to RMS by removing traces of \"gdbtk\"...
+ for i in * ; do
+ if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then
+ echo Removing traces of \"gdbtk\" out of $i...
+ cp $i new
+ sed '/start\-sanitize\-gdbtk/,/end-\sanitize\-gdbtk/d' < $i > new
+ if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
+ echo Caching $i in .Recover...
+ mv $i .Recover
+ fi
+ mv new $i
+ fi
+ done
+else
+ echo Leaving \"gdbtk\" in the sources...
+ for i in * ; do
+ if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then
+ echo Keeping \"gdbtk\" stuff in $i, but editing out sanitize lines...
+ cp $i new
+ sed -e '/start\-sanitize\-gdbtk/d' -e '/end\-sanitize\-gdbtk/d' < $i > new
+ if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
+ echo Caching $i in .Recover...
+ mv $i .Recover
+ fi
+ mv new $i
+ fi
+ done
+fi
+
# eof