* gas/mn10300/am33.s: New test.

* gas/mn10300/basic.exp: Run it.
This commit is contained in:
Jeff Law
1998-06-18 00:17:18 +00:00
parent 82169ecef7
commit a2d41a258b
3 changed files with 71 additions and 0 deletions

View File

@ -72,6 +72,34 @@ else
done
fi
am33_files="ChangeLog"
if ( echo $* | grep keep\-am33 > /dev/null ) ; then
for i in $am33_files ; do
if test ! -d $i && (grep sanitize-am33 $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping am33 stuff in $i
fi
fi
done
else
for i in $am33_files ; do
if test ! -d $i && (grep sanitize-am33 $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"am33\" from $i...
fi
cp $i new
sed '/start\-sanitize\-am33/,/end-\sanitize\-am33/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...
fi
mv $i .Recover
fi
mv new $i
fi
done
fi
d30v_files="ChangeLog"
if ( echo $* | grep keep\-d30v > /dev/null ) ; then
for i in $d30v_files ; do

View File

@ -1,3 +1,10 @@
start-sanitize-am33
Wed Jun 17 18:14:33 1998 Jeffrey A Law (law@cygnus.com)
* gas/mn10300/am33.s: New test.
* gas/mn10300/basic.exp: Run it.
end-sanitize-am33
Wed Jun 17 14:02:10 1998 Frank Ch. Eigler <fche@cygnus.com>
* gas/mips/delay.d: Add -mcpu=NNNN to gas flags to let test case

View File

@ -17,6 +17,14 @@
Do-first:
am33_files="am33.s"
if ( echo $* | grep keep\-am33 > /dev/null ) ; then
keep_these_too="${am33_files} ${keep_these_too}"
else
lose_these_too="${am33_files} ${lose_these_too}"
fi
# All files listed between the "Things-to-keep:" line and the
# "Files-to-sed:" line will be kept. All other files will be removed.
# Directories listed in this section will have their own Sanitize
@ -49,4 +57,32 @@ Things-to-lose:
Do-last:
am33_files="basic.exp"
if ( echo $* | grep keep\-am33 > /dev/null ) ; then
for i in $am33_files ; do
if test ! -d $i && (grep sanitize-am33 $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping am33 stuff in $i
fi
fi
done
else
for i in $am33_files ; do
if test ! -d $i && (grep sanitize-am33 $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"am33\" from $i...
fi
cp $i new
sed '/start\-sanitize\-am33/,/end-\sanitize\-am33/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...
fi
mv $i .Recover
fi
mv new $i
fi
done
fi
# End of file.