#!/bin/sh
# $OpenBSD: dostriptest,v 1.2 1998/02/15 18:50:12 niklas Exp $

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

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

doobjcmp $x $y
exit

#eof
