Don't run the `semi' testcase if dvp-*-*.
[deliverable/binutils-gdb.git] / gas / testsuite / gas / macros / .Sanitize
CommitLineData
96dbd10d
ILT
1# Sanitize.in for gas/testsuite/gas/macros
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
17Do-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
26Things-to-keep:
27
28err.s
29irp.d
30irp.s
31macros.exp
32rept.d
33rept.s
f87ac266
ILT
34semi.d
35semi.s
96dbd10d
ILT
36test1.d
37test1.s
38test2.d
39test2.s
40test3.d
41test3.s
42
43Things-to-lose:
44
45Do-last:
46
7908eab7
DE
47sky_files="macros.exp"
48if ( echo $* | grep keep\-sky > /dev/null ) ; then
49 for i in $sky_files ; do
50 if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
51 if [ -n "${verbose}" ] ; then
52 echo Keeping sky stuff in $i
53 fi
54 fi
55 done
56else
57 for i in $sky_files ; do
58 if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
59 if [ -n "${verbose}" ] ; then
60 echo Removing traces of \"sky\" from $i...
61 fi
62 cp $i new
63 sed '/start\-sanitize\-sky/,/end-\sanitize\-sky/d' < $i > new
64 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
65 if [ -n "${verbose}" ] ; then
66 echo Caching $i in .Recover...
67 fi
68 mv $i .Recover
69 fi
70 mv new $i
71 fi
72 done
73fi
74
75for i in * ; do
76 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
77 echo '***' Some mentions of Sanitize are still left in $i! 1>&2
78 fi
79done
80
96dbd10d 81# End of file.
This page took 0.109763 seconds and 4 git commands to generate.