diff options
author | Lawrence Teo <lteo@cvs.openbsd.org> | 2014-03-26 04:07:45 +0000 |
---|---|---|
committer | Lawrence Teo <lteo@cvs.openbsd.org> | 2014-03-26 04:07:45 +0000 |
commit | 549f71fe5940795fd61e5e3e9b9558ae4f96ac9d (patch) | |
tree | e6a9f15c27d56a30d444503284f57e787c9bab52 /regress/bin/md5/Makefile | |
parent | 4721cd9cebe0ecdd01a7211c091ce9fa10e09283 (diff) |
Remove sum test since sum(1) is gone; add sha512 test
Diffstat (limited to 'regress/bin/md5/Makefile')
-rw-r--r-- | regress/bin/md5/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/regress/bin/md5/Makefile b/regress/bin/md5/Makefile index 92c105c0963..54b9ff5e1e2 100644 --- a/regress/bin/md5/Makefile +++ b/regress/bin/md5/Makefile @@ -1,6 +1,6 @@ -# $OpenBSD: Makefile,v 1.5 2010/08/08 20:15:32 david Exp $ +# $OpenBSD: Makefile,v 1.6 2014/03/26 04:07:44 lteo Exp $ -REGRESS_TARGETS=cksum md5 sha1 sha256 sum md5_string_vs_files md5_pipe +REGRESS_TARGETS=cksum md5 sha1 sha256 sha512 md5_string_vs_files md5_pipe REGRESS_TARGETS+=md5_pipe_vs_file md5_multiple_files cksum: @@ -15,8 +15,8 @@ sha1: sha256: sha256 -x | cmp -s ${.CURDIR}/testsuite.sha256 /dev/stdin -sum: - sum -x | cmp -s ${.CURDIR}/testsuite.sum /dev/stdin +sha512: + sha512 -x | cmp -s ${.CURDIR}/testsuite.sha512 /dev/stdin # shouldn't allow files on the command line along with '-s' md5_string_vs_files: |