]> Git Repo - binutils.git/blobdiff - gas/testsuite/.Sanitize
* Makefile.in, configure.in: Remove; the testsuite is now run
[binutils.git] / gas / testsuite / .Sanitize
index 68d7272b2f639fbe4ae85aec0dd6cc8d2d0baa31..466b14cdc85a3cd87f15dde40c191d6296c66ac0 100644 (file)
@@ -1,5 +1,4 @@
-# Sanitize.in for devo.
-# $Id$
+# Sanitize.in for gas test suite.
 #
 
 # Each directory to survive it's way into a release will need a file
@@ -26,12 +25,72 @@ Do-first:
 
 Things-to-keep:
 
-Makefile.in
+ChangeLog
 config
-configure.in
 gas
+gasp
 lib
 
+Things-to-lose:
+
+
+
 Do-last:
 
+# Don't try to clean directories here, as the 'mv' command will fail.
+# Also, grep fails on NFS mounted directories.
+
+if [ -n "${verbose}" ] ; then
+       echo Processing \"arc\"...
+fi
+
+arc_files="ChangeLog"
+if ( echo $* | grep keep\-arc > /dev/null ) ; then
+       for i in $arc_files ; do
+               if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
+                       if [ -n "${verbose}" ] ; then
+                               echo Keeping arc stuff in $i
+                       fi
+               fi
+       done
+else
+       for i in $arc_files ; do
+               if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
+                       if [ -n "${verbose}" ] ; then
+                               echo Removing traces of \"arc\" from $i...
+                       fi
+                       cp $i new
+                       sed '/start\-sanitize\-arc/,/end-\sanitize\-arc/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
+
+sh3e_files="ChangeLog"
+if ( echo $* | grep keep\-sh3e > /dev/null ) ; then
+       if [ -n "${verbose}" ] ; then
+               echo Keeping sh3e stuff in $sh3e_files.
+       fi
+else
+       if [ -n "${verbose}" ]; then
+               echo -n Cleaning sh3e in `pwd`:
+       fi
+       for f in $sh3e_files ; do
+               if [ -n "${verbose}" ] ; then
+                       echo -n " " $f
+               fi
+               sed -e '/start\-sanitize\-sh3e/,/end\-sanitize\-sh3e/d' -e '/ xl /d' < $f > new
+               if [ -n "${safe}" ] ; then
+                       mv $f .Recover
+               fi
+               mv new $f
+       done
+fi
+
 # End of file.
This page took 0.025875 seconds and 4 git commands to generate.