mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-26 22:07:58 +08:00
Initial txvu testing support.
This commit is contained in:
@ -41,7 +41,7 @@ Do-last:
|
|||||||
# Also, grep fails on NFS mounted directories.
|
# Also, grep fails on NFS mounted directories.
|
||||||
|
|
||||||
if [ -n "${verbose}" ] ; then
|
if [ -n "${verbose}" ] ; then
|
||||||
echo Processing \"v850\"...
|
echo Processing \"tic80\"...
|
||||||
fi
|
fi
|
||||||
|
|
||||||
tic80_files="ChangeLog"
|
tic80_files="ChangeLog"
|
||||||
@ -212,4 +212,32 @@ else
|
|||||||
done
|
done
|
||||||
fi
|
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.
|
# End of 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
|
start-sanitize-r5900
|
||||||
Mon Dec 22 12:47:16 1997 Ian Lance Taylor <ian@cygnus.com>
|
Mon Dec 22 12:47:16 1997 Ian Lance Taylor <ian@cygnus.com>
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user