darling-gdb/gas/testscripts/dostriptest
K. Richard Pixley fecd2382e7 Initial revision
1991-04-04 18:19:53 +00:00

16 lines
118 B
Bash
Executable File

#!/bin/sh
# $Id$
x=striptest.xx.$$
y=striptest.yy.$$
cp $1 $x
strip $x
cp $2 $y
strip $y
doobjcmp $x $y
exit
#eof