aboutsummaryrefslogtreecommitdiff
path: root/gas/testscripts/dostriptest
diff options
context:
space:
mode:
Diffstat (limited to 'gas/testscripts/dostriptest')
-rwxr-xr-xgas/testscripts/dostriptest15
1 files changed, 15 insertions, 0 deletions
diff --git a/gas/testscripts/dostriptest b/gas/testscripts/dostriptest
new file mode 100755
index 0000000..4b89df8
--- /dev/null
+++ b/gas/testscripts/dostriptest
@@ -0,0 +1,15 @@
+#!/bin/sh
+# $Id$
+
+x=striptest.xx.$$
+y=striptest.yy.$$
+
+cp $1 $x
+strip $x
+cp $2 $y
+strip $y
+
+doobjcmp $x $y
+exit
+
+#eof