Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[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 # $DragonFly: src/gnu/usr.bin/as/testscripts/Attic/dostriptest,v 1.2 2003/06/17 04:25:44 dillon Exp $
4
5 x=striptest.xx.$$
6 y=striptest.yy.$$
7
8 cp $1 $x
9 strip $x
10 cp $2 $y
11 strip $y
12
13 doobjcmp $x $y
14 exit
15
16 #eof