]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - sim/testsuite/.Sanitize
r5900 sanitization fixes.
[thirdparty/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\-v850eq > /dev/null ) ; then
33 keep_these_too="v850eq-elf ${keep_these_too}"
34 else
35 lose_these_too="v850eq-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 configure
49 configure.in
50 d10v-elf
51
52 Things-to-lose:
53
54 common
55 tic80-coff
56 README
57
58 Do-last:
59
60 d30v_files="configure configure.in ChangeLog Makefile.in"
61 if ( echo $* | grep keep\-d30v > /dev/null ) ; then
62 for i in $d30v_files ; do
63 if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then
64 if [ -n "${verbose}" ] ; then
65 echo Keeping d30v stuff in $i
66 fi
67 fi
68 done
69 else
70 for i in $d30v_files ; do
71 if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then
72 if [ -n "${verbose}" ] ; then
73 echo Removing traces of \"d30v\" from $i...
74 fi
75 cp $i new
76 sed '/start\-sanitize\-d30v/,/end-\sanitize\-d30v/d' < $i > new
77 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
78 if [ -n "${verbose}" ] ; then
79 echo Caching $i in .Recover...
80 fi
81 mv $i .Recover
82 fi
83 mv new $i
84 fi
85 done
86 fi
87
88 r5900_files="configure configure.in ChangeLog Makefile.in"
89 if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
90 for i in $r5900_files ; do
91 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
92 if [ -n "${verbose}" ] ; then
93 echo Keeping r5900 stuff in $i
94 fi
95 fi
96 done
97 else
98 for i in $r5900_files ; do
99 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
100 if [ -n "${verbose}" ] ; then
101 echo Removing traces of \"r5900\" from $i...
102 fi
103 cp $i new
104 sed '/start\-sanitize\-r5900/,/end-\sanitize\-r5900/d' < $i > new
105 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
106 if [ -n "${verbose}" ] ; then
107 echo Caching $i in .Recover...
108 fi
109 mv $i .Recover
110 fi
111 mv new $i
112 fi
113 done
114 fi
115
116 for i in * ; do
117 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
118 echo '***' Some mentions of Sanitize are still left in $i! 1>&2
119 fi
120 done
121
122 # End of file.