Add txvu support.
[deliverable/binutils-gdb.git] / binutils / testsuite / binutils-all / .Sanitize
1 # .Sanitize for devo/binutils/testsuite/binutils-all.
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
16 Do-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
24 Things-to-keep:
25
26 ar.exp
27 bintest.s
28 hppa
29 nm.exp
30 objcopy.exp
31 objdump.exp
32 size.exp
33 testprog.c
34
35 Things-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
41 Do-last:
42
43 # Don't try to clean directories here, as the 'mv' command will fail.
44 # Also, grep fails on NFS mounted directories.
45
46 if [ -n "${verbose}" ] ; then
47 echo Processing \"d30v\"...
48 fi
49
50 d30v_files="objdump.exp"
51
52 if ( 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
60 else
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
77 fi
78
79 sky_files="objdump.exp"
80
81 if ( echo $* | grep keep\-sky > /dev/null ) ; then
82 for i in $sky_files ; do
83 if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
84 if [ -n "${verbose}" ] ; then
85 echo Keeping sky stuff in $i
86 fi
87 fi
88 done
89 else
90 for i in * ; do
91 if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
92 if [ -n "${verbose}" ] ; then
93 echo Removing traces of \"sky\" from $i...
94 fi
95 cp $i new
96 sed '/start\-sanitize\-sky/,/end-\sanitize\-sky/d' < $i > new
97 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
98 if [ -n "${verbose}" ] ; then
99 echo Caching $i in .Recover...
100 fi
101 mv $i .Recover
102 fi
103 mv new $i
104 fi
105 done
106 fi
107
108 for i in * ; do
109 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
110 echo '***' Some mentions of Sanitize are still left in $i! 1>&2
111 fi
112 done
This page took 0.034963 seconds and 4 git commands to generate.