#!/bin/sh
# $FreeBSD: stable/3/gnu/usr.bin/as/testscripts/dostriptest 50569 1999-08-29 14:49:43Z peter $

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

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

doobjcmp $x $y
exit

#eof
