Initial import from FreeBSD RELENG_4:
[dragonfly.git] / gnu / usr.bin / as / testscripts / dostriptest
1 #!/bin/sh
2 # $FreeBSD: src/gnu/usr.bin/as/testscripts/dostriptest,v 1.4 1999/08/27 23:34:35 peter Exp $
3
4 x=striptest.xx.$$
5 y=striptest.yy.$$
6
7 cp $1 $x
8 strip $x
9 cp $2 $y
10 strip $y
11
12 doobjcmp $x $y
13 exit
14
15 #eof