* Added test bucket directory for sky tests, which may be run in conjunction
[deliverable/binutils-gdb.git] / sim / testsuite / .Sanitize
CommitLineData
00729fe3
AC
1# .Sanitize for devo/sim/testsuite
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
15
16Do-first:
17
18d30v_files="d30v-elf"
19if ( echo $* | grep keep\-d30v > /dev/null ) ; then
20 keep_these_too="${d30v_files} ${keep_these_too}"
21else
22 lose_these_too="${d30v_files} ${lose_these_too}"
23fi
24
bfebf1a5 25r5900_files="mips64r5900-elf"
7cf0d795
AC
26if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
27 keep_these_too="${r5900_files} ${keep_these_too}"
28else
29 lose_these_too="${r5900_files} ${lose_these_too}"
30fi
31
559eba20
FCE
32sky_files="sky"
33if ( echo $* | grep keep\-sky > /dev/null ) ; then
34 keep_these_too="${sky_files} ${keep_these_too}"
35else
36 lose_these_too="${sky_files} ${lose_these_too}"
37fi
38
61c550e0
NC
39if ( echo $* | grep keep\-v850e > /dev/null ) ; then
40 keep_these_too="v850e-elf ${keep_these_too}"
e1625ed2 41else
61c550e0 42 lose_these_too="v850e-elf ${lose_these_too}"
e1625ed2
FL
43fi
44
00729fe3
AC
45# All files listed between the "Things-to-keep:" line and the
46# "Files-to-sed:" line will be kept. All other files will be removed.
47# Directories listed in this section will have their own Sanitize
48# called. Directories not listed will be removed in their entirety
49# with rm -rf.
50
51Things-to-keep:
52
53ChangeLog
54Makefile.in
e9b53280 55common
761784f0 56config
00729fe3
AC
57configure
58configure.in
88770c1c 59d10v-elf
761784f0 60lib
6dc224fb 61m32r-elf
761784f0 62sim
00729fe3
AC
63
64Things-to-lose:
65
3971886a 66tic80-coff
2bc779d7 67README
7ec396d2 68
00729fe3
AC
69Do-last:
70
71d30v_files="configure configure.in ChangeLog Makefile.in"
72if ( echo $* | grep keep\-d30v > /dev/null ) ; then
73 for i in $d30v_files ; do
74 if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then
75 if [ -n "${verbose}" ] ; then
76 echo Keeping d30v stuff in $i
77 fi
78 fi
79 done
80else
81 for i in $d30v_files ; do
82 if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then
83 if [ -n "${verbose}" ] ; then
84 echo Removing traces of \"d30v\" from $i...
85 fi
86 cp $i new
87 sed '/start\-sanitize\-d30v/,/end-\sanitize\-d30v/d' < $i > new
88 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
89 if [ -n "${verbose}" ] ; then
90 echo Caching $i in .Recover...
91 fi
92 mv $i .Recover
93 fi
94 mv new $i
95 fi
96 done
97fi
98
7cf0d795
AC
99r5900_files="configure configure.in ChangeLog Makefile.in"
100if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
101 for i in $r5900_files ; do
102 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
103 if [ -n "${verbose}" ] ; then
104 echo Keeping r5900 stuff in $i
105 fi
106 fi
107 done
108else
109 for i in $r5900_files ; do
110 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
111 if [ -n "${verbose}" ] ; then
112 echo Removing traces of \"r5900\" from $i...
113 fi
114 cp $i new
115 sed '/start\-sanitize\-r5900/,/end-\sanitize\-r5900/d' < $i > new
116 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
117 if [ -n "${verbose}" ] ; then
118 echo Caching $i in .Recover...
119 fi
120 mv $i .Recover
121 fi
122 mv new $i
123 fi
124 done
125fi
126
559eba20
FCE
127sky_files="configure configure.in ChangeLog"
128if ( echo $* | grep keep\-sky > /dev/null ) ; then
129 for i in $sky_files ; do
130 if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
131 if [ -n "${verbose}" ] ; then
132 echo Keeping sky stuff in $i
133 fi
134 fi
135 done
136else
137 for i in $sky_files ; do
138 if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
139 if [ -n "${verbose}" ] ; then
140 echo Removing traces of \"sky\" from $i...
141 fi
142 cp $i new
143 sed '/start\-sanitize\-sky/,/end-\sanitize\-sky/d' < $i > new
144 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
145 if [ -n "${verbose}" ] ; then
146 echo Caching $i in .Recover...
147 fi
148 mv $i .Recover
149 fi
150 mv new $i
151 fi
152 done
153fi
154
00729fe3
AC
155for i in * ; do
156 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
157 echo '***' Some mentions of Sanitize are still left in $i! 1>&2
158 fi
159done
160
161# End of file.
This page took 0.057355 seconds and 4 git commands to generate.