* gas/mn10300/am33_6.s: New test.
[deliverable/binutils-gdb.git] / gas / testsuite / gas / mn10300 / .Sanitize
CommitLineData
7d666962
JL
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
18Do-first:
19
1d18312a 20am33_files="am33.s am33_2.s am33_3.s am33_4.s am33_5.s am33_6.s am33_7.s am33_8.s"
a2d41a25
JL
21
22if ( echo $* | grep keep\-am33 > /dev/null ) ; then
23 keep_these_too="${am33_files} ${keep_these_too}"
24else
25 lose_these_too="${am33_files} ${lose_these_too}"
26fi
27
7d666962
JL
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
34Things-to-keep:
c3fa8cd6
JL
35add.s
36basic.exp
37bcc.s
38bit.s
39cmp.s
40ext.s
41extend.s
42logical.s
43loop.s
44mov1.s
45mov2.s
46mov3.s
47mov4.s
48movbu.s
49movhu.s
50movm.s
51muldiv.s
52other.s
53shift.s
54sub.s
7d666962
JL
55
56Things-to-lose:
57
58Do-last:
59
a2d41a25
JL
60am33_files="basic.exp"
61if ( 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
69else
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
86fi
87
7d666962 88# End of file.
This page took 0.094192 seconds and 4 git commands to generate.