* lib/gas-defs.exp (run_dump_test): If the program to run does not
[binutils-gdb.git] / gas / testsuite / lib / dostriptest
1 #!/bin/sh
2 # $Id$
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