old-cross-binutils/gas/testscripts/doboth

21 lines
187 B
Text
Raw Normal View History

1991-04-04 18:19:53 +00:00
#!/bin/sh
# $Id$
x=$1 ; shift
y=$1 ; shift
rm tmp.0 > /dev/null 2>&1
ln -s $x tmp.0
$* tmp.0 > tmp.1
rm tmp.0
ln -s $y tmp.0
$* tmp.0 > tmp.2
rm tmp.0
diff -c tmp.1 tmp.2
exit
#eof