#!/bin/sh
# $FreeBSD: stable/2.2/gnu/usr.bin/as/testscripts/dostriptest 50952 1999-09-05 11:54:50Z peter $

x=striptest.xx.$$
y=striptest.yy.$$

cp $1 $x
strip $x
cp $2 $y
strip $y

doobjcmp $x $y
exit

#eof
