diff options
author | Keith Seitz <keiths@cygnus> | 1998-06-27 00:47:35 +0000 |
---|---|---|
committer | Keith Seitz <keiths@cygnus> | 1998-06-27 00:47:35 +0000 |
commit | f35ea21826aadb993ad6deb44f781cfbf5f90bff (patch) | |
tree | 55a304aab528fb2e2338d630e5042ba2872db0f3 /gdb/testsuite/.Sanitize | |
parent | 7f6cb62ee6bb03d33729ca8a27e3946591efc1f1 (diff) | |
download | gdb-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/.Sanitize')
-rw-r--r-- | gdb/testsuite/.Sanitize | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/gdb/testsuite/.Sanitize b/gdb/testsuite/.Sanitize index ad9d19b..d37c78c 100644 --- a/gdb/testsuite/.Sanitize +++ b/gdb/testsuite/.Sanitize @@ -15,6 +15,20 @@ Do-first: +gdbtk_files="gdb.gdbtk" + +if ( echo $* | grep lose\-gdbtk > /dev/null ) ; then + lose_these_too="${gdbtk_files} ${lose_these_too}" + if [ -n "${verbose}" ] ; then + echo Deleting ${gdbtk_files} + fi +else + keep_these_too="${gdbtk_files} ${keep_these_too}" + if [ -n "${verbose}" ] ; then + echo Keeping ${gdbtk_files} + fi +fi + # All files listed between the "Things-to-keep:" line and the # "Do-last:" line will be kept. All other files will be removed. # Directories listed in this section will have their own Sanitize @@ -77,6 +91,36 @@ else done fi +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 + for i in * ; do if test ! -d $i && (grep sanitize $i > /dev/null) ; then echo '***' Some mentions of Sanitize are still left in $i! 1>&2 |