Remove arc sanitization.
[deliverable/binutils-gdb.git] / binutils / testsuite / binutils-all / .Sanitize
CommitLineData
7f23bcab
ILT
1# .Sanitize for deja-gnu.
2
3# Each directory to survive it's way into a release will need a file
4# like this one called "./.Sanitize". All keyword lines must exist,
5# and must exist in the order specified by this file. Each directory
6# in the tree will be processed, top down, in the following order.
7
8# Hash started lines like this one are comments and will be deleted
9# before anything else is done. Blank lines will also be squashed
10# out.
11
12# The lines between the "Do-first:" line and the "Things-to-keep:"
13# line are executed as a /bin/sh shell script before anything else is
14# done in this directory.
15
16Do-first:
17
18# All files listed between the "Things-to-keep:" line and the
19# "Do-last:" line will be kept. All other files will be removed.
20# Directories listed in this section will have their own Sanitize
21# called. Directories not listed will be removed in their entirety
22# with rm -rf.
23
24Things-to-keep:
25
0efc2218 26ar.exp
3aba335d 27bintest.s
fcca5c83 28hppa
7f23bcab 29nm.exp
09250cfe 30objcopy.exp
7f23bcab
ILT
31objdump.exp
32size.exp
febc1fc3 33testprog.c
7f23bcab
ILT
34
35Things-to-lose:
36
37# The lines between the "Do-last:" line and the end of the file
38# are executed as a /bin/sh shell script after everything else is
39# done.
40
41Do-last:
42
a0b2913c
DE
43# Don't try to clean directories here, as the 'mv' command will fail.
44# Also, grep fails on NFS mounted directories.
45
2b5c4499 46if [ -n "${verbose}" ] ; then
718a5c17 47 echo Processing \"d30v\"...
02053c20
MH
48fi
49
50d30v_files="objdump.exp"
51
52if ( echo $* | grep keep\-d30v > /dev/null ) ; then
53 for i in $d30v_files ; do
54 if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then
55 if [ -n "${verbose}" ] ; then
56 echo Keeping d30v stuff in $i
57 fi
58 fi
59 done
60else
61 for i in * ; do
62 if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then
63 if [ -n "${verbose}" ] ; then
64 echo Removing traces of \"d30v\" from $i...
65 fi
66 cp $i new
67 sed '/start\-sanitize\-d30v/,/end-\sanitize\-d30v/d' < $i > new
68 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
69 if [ -n "${verbose}" ] ; then
70 echo Caching $i in .Recover...
71 fi
72 mv $i .Recover
73 fi
74 mv new $i
75 fi
76 done
77fi
78
a0b2913c
DE
79for i in * ; do
80 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
81 echo '***' Some mentions of Sanitize are still left in $i! 1>&2
82 fi
83done
This page took 0.096665 seconds and 4 git commands to generate.