mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
16 lines
118 B
Bash
Executable File
16 lines
118 B
Bash
Executable File
#!/bin/sh
|
|
# $Id$
|
|
|
|
x=striptest.xx.$$
|
|
y=striptest.yy.$$
|
|
|
|
cp $1 $x
|
|
strip $x
|
|
cp $2 $y
|
|
strip $y
|
|
|
|
doobjcmp $x $y
|
|
exit
|
|
|
|
#eof
|