More v850 simulator tests.
[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="mips64r5900el-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 # All files listed between the "Things-to-keep:" line and the
33 # "Files-to-sed:" line will be kept. All other files will be removed.
34 # Directories listed in this section will have their own Sanitize
35 # called. Directories not listed will be removed in their entirety
36 # with rm -rf.
37
38 Things-to-keep:
39
40 ChangeLog
41 Makefile.in
42 configure
43 configure.in
44
45 Things-to-lose:
46
47 common
48 tic80-coff
49 v850eq-elf
50 README
51
52 Do-last:
53
54 d30v_files="configure configure.in ChangeLog Makefile.in"
55 if ( echo $* | grep keep\-d30v > /dev/null ) ; then
56 for i in $d30v_files ; do
57 if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then
58 if [ -n "${verbose}" ] ; then
59 echo Keeping d30v stuff in $i
60 fi
61 fi
62 done
63 else
64 for i in $d30v_files ; do
65 if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then
66 if [ -n "${verbose}" ] ; then
67 echo Removing traces of \"d30v\" from $i...
68 fi
69 cp $i new
70 sed '/start\-sanitize\-d30v/,/end-\sanitize\-d30v/d' < $i > new
71 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
72 if [ -n "${verbose}" ] ; then
73 echo Caching $i in .Recover...
74 fi
75 mv $i .Recover
76 fi
77 mv new $i
78 fi
79 done
80 fi
81
82 r5900_files="configure configure.in ChangeLog Makefile.in"
83 if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
84 for i in $r5900_files ; do
85 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
86 if [ -n "${verbose}" ] ; then
87 echo Keeping r5900 stuff in $i
88 fi
89 fi
90 done
91 else
92 for i in $r5900_files ; do
93 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
94 if [ -n "${verbose}" ] ; then
95 echo Removing traces of \"r5900\" from $i...
96 fi
97 cp $i new
98 sed '/start\-sanitize\-r5900/,/end-\sanitize\-r5900/d' < $i > new
99 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
100 if [ -n "${verbose}" ] ; then
101 echo Caching $i in .Recover...
102 fi
103 mv $i .Recover
104 fi
105 mv new $i
106 fi
107 done
108 fi
109
110 for i in * ; do
111 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
112 echo '***' Some mentions of Sanitize are still left in $i! 1>&2
113 fi
114 done
115
116 # End of file.
This page took 0.032077 seconds and 4 git commands to generate.