aboutsummaryrefslogtreecommitdiff
path: root/sbin/md5/tests/bsd-p-test.SH
diff options
context:
space:
mode:
Diffstat (limited to 'sbin/md5/tests/bsd-p-test.SH')
-rw-r--r--sbin/md5/tests/bsd-p-test.SH24
1 files changed, 0 insertions, 24 deletions
diff --git a/sbin/md5/tests/bsd-p-test.SH b/sbin/md5/tests/bsd-p-test.SH
deleted file mode 100644
index 77a725377e2c..000000000000
--- a/sbin/md5/tests/bsd-p-test.SH
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh
-
-exitcode=0
-
-testloop () {
- opt=$1
- sum=$2
-
- for algorithm in sha512; do
- for f in %%TESTSBASE%%/sbin/md5/*.inp; do
- outbase=$(basename $f .inp)
- $algorithm$sum $opt -p < $f > $outbase.out
- diff %%TESTSBASE%%/sbin/md5/$outbase.$algorithm$sum-p.chk $outbase.out || exitcode=1
- done
- done
-}
-
-testloop "" ""
-testloop -q ""
-testloop -qr ""
-testloop "" sum
-testloop -q sum
-
-exit $exitcode