blob: fb15e9b5eb8ff7f813fa027d008672e14461c5a9 (
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
|
# $OpenBSD: Makefile,v 1.4 2002/09/02 20:01:43 avsm Exp $
REGRESS_TARGETS=md5 sha1 rmd160 md5_string_vs_files md5_pipe
REGRESS_TARGETS+=md5_pipe_vs_file md5_multiple_files
md5:
md5 -x | cmp -s ${.CURDIR}/testsuite.md5 /dev/stdin
sha1:
sha1 -x | cmp -s ${.CURDIR}/testsuite.sha1 /dev/stdin
rmd160:
rmd160 -x | cmp -s ${.CURDIR}/testsuite.rmd160 /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>
|