summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2010-10-07 13:54:10 +0100
committerMans Rullgard <mans@mansr.com>2011-01-18 20:48:24 +0000
commitee6184a8d921f22ecbb2b78819cb3d18685a389a (patch)
tree1ffd1469c8a055cb70e55f9c61549027cd42135f /tests
parentfb3c4ffc4b61a7fa6b1f2b53c931bde9d114db75 (diff)
regtest: add openssl to md5 alternatives
Diffstat (limited to 'tests')
-rw-r--r--tests/md5.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/md5.sh b/tests/md5.sh
index 6809169bd2..16b0281c00 100644
--- a/tests/md5.sh
+++ b/tests/md5.sh
@@ -6,6 +6,8 @@ elif [ X"$(echo | md5 2> /dev/null)" != X ]; then
do_md5sum() { md5 $1 | sed 's#MD5 (\(.*\)) = \(.*\)#\2 *\1#'; }
elif [ -x /sbin/md5 ]; then
do_md5sum() { /sbin/md5 -r $1 | sed 's# \**\./# *./#'; }
+elif openssl version >/dev/null 2>&1; then
+ do_md5sum() { openssl md5 $1 | sed 's/MD5(\(.*\))= \(.*\)/\2 *\1/'; }
else
do_md5sum() { echo No md5sum program found; }
fi