* gas/sh/*: New tests for the hitachi-sh.
[deliverable/binutils-gdb.git] / gas / testsuite / .Sanitize
1 # Sanitize.in for gas test suite.
2 #
3
4 # Each directory to survive it's way into a release will need a file
5 # like this one called "./.Sanitize". All keyword lines must exist,
6 # and must exist in the order specified by this file. Each directory
7 # in the tree will be processed, top down, in the following order.
8
9 # Hash started lines like this one are comments and will be deleted
10 # before anything else is done. Blank lines will also be squashed
11 # out.
12
13 # The lines between the "Do-first:" line and the "Things-to-keep:"
14 # line are executed as a /bin/sh shell script before anything else is
15 # done in this
16
17 Do-first:
18
19
20 # All files listed between the "Things-to-keep:" line and the
21 # "Files-to-sed:" line will be kept. All other files will be removed.
22 # Directories listed in this section will have their own Sanitize
23 # called. Directories not listed will be removed in their entirety
24 # with rm -rf.
25
26 Things-to-keep:
27
28 ChangeLog
29 Makefile.in
30 config
31 configure.in
32 gas
33 gasp
34 lib
35
36 Things-to-lose:
37
38
39
40 Do-last:
41
42 # Don't try to clean directories here, as the 'mv' command will fail.
43 # Also, grep fails on NFS mounted directories.
44
45 if [ -n "${verbose}" ] ; then
46 echo Processing \"arc\"...
47 fi
48
49 arc_files="ChangeLog"
50 if ( echo $* | grep keep\-arc > /dev/null ) ; then
51 for i in $arc_files ; do
52 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
53 if [ -n "${verbose}" ] ; then
54 echo Keeping arc stuff in $i
55 fi
56 fi
57 done
58 else
59 for i in $arc_files ; do
60 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
61 if [ -n "${verbose}" ] ; then
62 echo Removing traces of \"arc\" from $i...
63 fi
64 cp $i new
65 sed '/start\-sanitize\-arc/,/end-\sanitize\-arc/d' < $i > new
66 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
67 if [ -n "${verbose}" ] ; then
68 echo Caching $i in .Recover...
69 fi
70 mv $i .Recover
71 fi
72 mv new $i
73 fi
74 done
75 fi
76
77 sh3e_files="ChangeLog"
78 if ( echo $* | grep keep\-sh3e > /dev/null ) ; then
79 if [ -n "${verbose}" ] ; then
80 echo Keeping sh3e stuff in $sh3e_files.
81 fi
82 else
83 if [ -n "${verbose}" ]; then
84 echo -n Cleaning sh3e in `pwd`:
85 fi
86 for f in $sh3e_files ; do
87 if [ -n "${verbose}" ] ; then
88 echo -n " " $f
89 fi
90 sed -e '/start\-sanitize\-sh3e/,/end\-sanitize\-sh3e/d' -e '/ xl /d' < $f > new
91 if [ -n "${safe}" ] ; then
92 mv $f .Recover
93 fi
94 mv new $f
95 done
96 fi
97
98 # End of file.
This page took 0.037197 seconds and 5 git commands to generate.