allwinner_a64/android/toolchain/binutils/binutils-2.25/gas/testsuite/lib/doboth
2018-08-08 20:10:12 +08:00

19 lines
180 B
Bash
Executable file

#!/bin/sh
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