aboutsummaryrefslogtreecommitdiff
path: root/sim/testsuite/.Sanitize
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>1997-07-15 20:46:15 +0000
committerAndrew Cagney <cagney@redhat.com>1997-07-15 20:46:15 +0000
commit7cf0d7951961c3f92b8717e33d798bb650c6065b (patch)
tree34204e2055f79d81f8404981985035a75a28a1b2 /sim/testsuite/.Sanitize
parent39e9b3369ae0c3df9240b92442785d8e6f514b80 (diff)
downloadgdb-7cf0d7951961c3f92b8717e33d798bb650c6065b.zip
gdb-7cf0d7951961c3f92b8717e33d798bb650c6065b.tar.gz
gdb-7cf0d7951961c3f92b8717e33d798bb650c6065b.tar.bz2
Configure r5900 testsuite sub-directory.
Diffstat (limited to 'sim/testsuite/.Sanitize')
-rw-r--r--sim/testsuite/.Sanitize36
1 files changed, 35 insertions, 1 deletions
diff --git a/sim/testsuite/.Sanitize b/sim/testsuite/.Sanitize
index 78f9367..4164e3a 100644
--- a/sim/testsuite/.Sanitize
+++ b/sim/testsuite/.Sanitize
@@ -22,6 +22,13 @@ else
lose_these_too="${d30v_files} ${lose_these_too}"
fi
+r5900_files="mips64r5900el-elf"
+if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
+ keep_these_too="${r5900_files} ${keep_these_too}"
+else
+ lose_these_too="${r5900_files} ${lose_these_too}"
+fi
+
# All files listed between the "Things-to-keep:" line and the
# "Files-to-sed:" line will be kept. All other files will be removed.
# Directories listed in this section will have their own Sanitize
@@ -39,7 +46,6 @@ Things-to-lose:
common
tic80-coff
-mips64vr5900el-elf
Do-last:
@@ -71,6 +77,34 @@ else
done
fi
+r5900_files="configure configure.in ChangeLog Makefile.in"
+if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
+ for i in $r5900_files ; do
+ if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
+ if [ -n "${verbose}" ] ; then
+ echo Keeping r5900 stuff in $i
+ fi
+ fi
+ done
+else
+ for i in $r5900_files ; do
+ if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
+ if [ -n "${verbose}" ] ; then
+ echo Removing traces of \"r5900\" from $i...
+ fi
+ cp $i new
+ sed '/start\-sanitize\-r5900/,/end-\sanitize\-r5900/d' < $i > new
+ if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
+ if [ -n "${verbose}" ] ; then
+ echo Caching $i in .Recover...
+ fi
+ 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