* gas/mn10300/am33_2.s: New test.
[deliverable/binutils-gdb.git] / gas / testsuite / gas / mn10300 / .Sanitize
1 # Sanitize.in for devo.
2 # $Id$
3 #
4
5 # Each directory to survive it's way into a release will need a file
6 # like this one called "./.Sanitize". All keyword lines must exist,
7 # and must exist in the order specified by this file. Each directory
8 # in the tree will be processed, top down, in the following order.
9
10 # Hash started lines like this one are comments and will be deleted
11 # before anything else is done. Blank lines will also be squashed
12 # out.
13
14 # The lines between the "Do-first:" line and the "Things-to-keep:"
15 # line are executed as a /bin/sh shell script before anything else is
16 # done in this
17
18 Do-first:
19
20 am33_files="am33.s am33_2.s am33_3.s"
21
22 if ( echo $* | grep keep\-am33 > /dev/null ) ; then
23 keep_these_too="${am33_files} ${keep_these_too}"
24 else
25 lose_these_too="${am33_files} ${lose_these_too}"
26 fi
27
28 # All files listed between the "Things-to-keep:" line and the
29 # "Files-to-sed:" line will be kept. All other files will be removed.
30 # Directories listed in this section will have their own Sanitize
31 # called. Directories not listed will be removed in their entirety
32 # with rm -rf.
33
34 Things-to-keep:
35 add.s
36 basic.exp
37 bcc.s
38 bit.s
39 cmp.s
40 ext.s
41 extend.s
42 logical.s
43 loop.s
44 mov1.s
45 mov2.s
46 mov3.s
47 mov4.s
48 movbu.s
49 movhu.s
50 movm.s
51 muldiv.s
52 other.s
53 shift.s
54 sub.s
55
56 Things-to-lose:
57
58 Do-last:
59
60 am33_files="basic.exp"
61 if ( echo $* | grep keep\-am33 > /dev/null ) ; then
62 for i in $am33_files ; do
63 if test ! -d $i && (grep sanitize-am33 $i > /dev/null) ; then
64 if [ -n "${verbose}" ] ; then
65 echo Keeping am33 stuff in $i
66 fi
67 fi
68 done
69 else
70 for i in $am33_files ; do
71 if test ! -d $i && (grep sanitize-am33 $i > /dev/null) ; then
72 if [ -n "${verbose}" ] ; then
73 echo Removing traces of \"am33\" from $i...
74 fi
75 cp $i new
76 sed '/start\-sanitize\-am33/,/end-\sanitize\-am33/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 # End of file.
This page took 0.034513 seconds and 5 git commands to generate.