aboutsummaryrefslogtreecommitdiff
path: root/gnu/usr.bin/as/testscripts/dostriptest
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/usr.bin/as/testscripts/dostriptest')
-rwxr-xr-xgnu/usr.bin/as/testscripts/dostriptest15
1 files changed, 0 insertions, 15 deletions
diff --git a/gnu/usr.bin/as/testscripts/dostriptest b/gnu/usr.bin/as/testscripts/dostriptest
deleted file mode 100755
index 9cf54754c32dd..0000000000000
--- a/gnu/usr.bin/as/testscripts/dostriptest
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-# $FreeBSD$
-
-x=striptest.xx.$$
-y=striptest.yy.$$
-
-cp $1 $x
-strip $x
-cp $2 $y
-strip $y
-
-doobjcmp $x $y
-exit
-
-#eof