c52e7b3f8ec0ac52e6db5adc228a2084acf4590e
[deliverable/binutils-gdb.git] / sim / testsuite / .Sanitize
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
16 Do-first:
17
18 d30v_files="d30v-elf"
19 if ( echo $* | grep keep\-d30v > /dev/null ) ; then
20 keep_these_too="${d30v_files} ${keep_these_too}"
21 else
22 lose_these_too="${d30v_files} ${lose_these_too}"
23 fi
24
25 r5900_files="mips64r5900-elf"
26 if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
27 keep_these_too="${r5900_files} ${keep_these_too}"
28 else
29 lose_these_too="${r5900_files} ${lose_these_too}"
30 fi
31
32 if ( echo $* | grep keep\-v850e > /dev/null ) ; then
33 keep_these_too="v850e-elf ${keep_these_too}"
34 else
35 lose_these_too="v850e-elf ${lose_these_too}"
36 fi
37
38 # All files listed between the "Things-to-keep:" line and the
39 # "Files-to-sed:" line will be kept. All other files will be removed.
40 # Directories listed in this section will have their own Sanitize
41 # called. Directories not listed will be removed in their entirety
42 # with rm -rf.
43
44 Things-to-keep:
45
46 ChangeLog
47 Makefile.in
48 common
49 config
50 configure
51 configure.in
52 d10v-elf
53 lib
54 m32r-elf
55 sim
56
57 Things-to-lose:
58
59 tic80-coff
60 README
61
62 Do-last:
63
64 d30v_files="configure configure.in ChangeLog Makefile.in"
65 if ( echo $* | grep keep\-d30v > /dev/null ) ; then
66 for i in $d30v_files ; do
67 if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then
68 if [ -n "${verbose}" ] ; then
69 echo Keeping d30v stuff in $i
70 fi
71 fi
72 done
73 else
74 for i in $d30v_files ; do
75 if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then
76 if [ -n "${verbose}" ] ; then
77 echo Removing traces of \"d30v\" from $i...
78 fi
79 cp $i new
80 sed '/start\-sanitize\-d30v/,/end-\sanitize\-d30v/d' < $i > new
81 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
82 if [ -n "${verbose}" ] ; then
83 echo Caching $i in .Recover...
84 fi
85 mv $i .Recover
86 fi
87 mv new $i
88 fi
89 done
90 fi
91
92 r5900_files="configure configure.in ChangeLog Makefile.in"
93 if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
94 for i in $r5900_files ; do
95 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
96 if [ -n "${verbose}" ] ; then
97 echo Keeping r5900 stuff in $i
98 fi
99 fi
100 done
101 else
102 for i in $r5900_files ; do
103 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
104 if [ -n "${verbose}" ] ; then
105 echo Removing traces of \"r5900\" from $i...
106 fi
107 cp $i new
108 sed '/start\-sanitize\-r5900/,/end-\sanitize\-r5900/d' < $i > new
109 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
110 if [ -n "${verbose}" ] ; then
111 echo Caching $i in .Recover...
112 fi
113 mv $i .Recover
114 fi
115 mv new $i
116 fi
117 done
118 fi
119
120 for i in * ; do
121 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
122 echo '***' Some mentions of Sanitize are still left in $i! 1>&2
123 fi
124 done
125
126 # End of file.
This page took 0.04142 seconds and 3 git commands to generate.