from gas/testscripts -- may be useful someday

This commit is contained in:
Ken Raeburn
1993-04-05 17:25:37 +00:00
parent d5bc321563
commit acf11ed1aa
6 changed files with 186 additions and 0 deletions

20
gas/testsuite/lib/doboth Executable file
View File

@@ -0,0 +1,20 @@
#!/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