blob: d210a9f2e622b84787e292354e5a4ca881cd0a7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# $OpenBSD: Makefile,v 1.7 2015/01/09 03:32:58 lteo Exp $
REGRESS_TARGETS=cksum md5 sha1 sha224 sha256 sha384 sha512 md5_string_vs_files
REGRESS_TARGETS+=md5_pipe md5_pipe_vs_file md5_multiple_files
cksum:
cksum -x | cmp -s ${.CURDIR}/testsuite.cksum /dev/stdin
md5:
md5 -x | cmp -s ${.CURDIR}/testsuite.md5 /dev/stdin
sha1:
sha1 -x | cmp -s ${.CURDIR}/testsuite.sha1 /dev/stdin
sha224:
cksum -a sha224 -x | cmp -s ${.CURDIR}/testsuite.sha224 /dev/stdin
sha256:
sha256 -x | cmp -s ${.CURDIR}/testsuite.sha256 /dev/stdin
sha384:
cksum -a sha384 -x | cmp -s ${.CURDIR}/testsuite.sha384 /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:
if md5 -s "" /dev/null >/dev/null 2>&1; then \
false ; \
fi
md5_pipe:
echo hi | md5 -p | cmp -s ${.CURDIR}/pipe_test.md5 /dev/stdin
# shouldn't allow files on the command line along with '-p'
md5_pipe_vs_file:
if echo hi | md5 -p /dev/null >/dev/null 2>&1; then \
false ; \
fi
# should allow multiple files
md5_multiple_files:
if [ `md5 /dev/null /dev/null | wc -l` != 2 ]; then \
false ; \
fi
.PHONY: ${REGRESS_TARGETS}
.include <bsd.regress.mk>
|