Initial txvu testing support.

This commit is contained in:
Doug Evans 1998-01-05 14:21:22 +00:00
parent 947ef4012a
commit 450dfc4090
2 changed files with 36 additions and 1 deletions

View file

@ -41,7 +41,7 @@ Do-last:
# Also, grep fails on NFS mounted directories.
if [ -n "${verbose}" ] ; then
echo Processing \"v850\"...
echo Processing \"tic80\"...
fi
tic80_files="ChangeLog"
@ -212,4 +212,32 @@ else
done
fi
sky_files="ChangeLog"
if ( echo $* | grep keep\-sky > /dev/null ) ; then
for i in $sky_files ; do
if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping sky stuff in $i
fi
fi
done
else
for i in $sky_files ; do
if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"sky\" from $i...
fi
cp $i new
sed '/start\-sanitize\-sky/,/end-\sanitize\-sky/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.

View file

@ -1,3 +1,10 @@
start-sanitize-sky
Mon Jan 5 14:20:17 1998 Doug Evans <devans@seba.cygnus.com>
* gas/txvu/txvu.exp: New file.
* gas/txvu/basic-1.[ds]: New files.
end-sanitize-sky
start-sanitize-r5900
Mon Dec 22 12:47:16 1997 Ian Lance Taylor <ian@cygnus.com>