No functional changes.
Add a very small regression test script. Add a "test" target to the package Makefile. Suggested by Dan McMahill.
This commit is contained in:
parent
6e3d881773
commit
30b3ee084a
2 changed files with 37 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.11 2001/03/13 15:14:30 dmcmahill Exp $
|
||||
# $NetBSD: Makefile,v 1.12 2001/03/14 17:27:05 agc Exp $
|
||||
#
|
||||
# When adding new digest algorithms, please use rmd160 as the template,
|
||||
# and bump the VERSION definition.
|
||||
|
@ -31,7 +31,7 @@ MAKE_ENV+= NETBSD_COMPATIBLE=YES
|
|||
.endif
|
||||
|
||||
post-extract:
|
||||
@for FILE in Makefile digest.c digest.1 \
|
||||
@for FILE in Makefile regress.sh digest.c digest.1 \
|
||||
md5c.c md5.h md5hl.c \
|
||||
rmd160.c rmd160.h rmd160hl.c \
|
||||
sha1.c sha1.h sha1hl.c \
|
||||
|
@ -50,4 +50,9 @@ pre-install:
|
|||
${ECHO} man/man1/digest.1 >> ${PLIST_SRC}; \
|
||||
fi
|
||||
|
||||
test:
|
||||
@${ECHO} "No news is good news"
|
||||
@cd ${WRKSRC} && ${SETENV} DIGESTDIR=${WRKSRC} ${SH} ./regress.sh
|
||||
@${ECHO} "All tests completed"
|
||||
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
|
|
30
pkgtools/digest/files/regress.sh
Normal file
30
pkgtools/digest/files/regress.sh
Normal file
|
@ -0,0 +1,30 @@
|
|||
#! /bin/sh
|
||||
#
|
||||
# $NetBSD: regress.sh,v 1.1 2001/03/14 17:27:05 agc Exp $
|
||||
# regression test for sha2
|
||||
|
||||
cat > expected1 << EOF
|
||||
ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad
|
||||
cb00753f45a35e8bb5a03d699ac65007272c32ab0eded1631a8b605a43ff5bed8086072ba1e7cc2358baeca134c825a7
|
||||
ddaf35a193617abacc417349ae20413112e6fa4e89a97ea20a9eeee64b55d39a2192992a274fc1a836ba3c23a3feebbd454d4423643ce80e2a9ac94fa54ca49f
|
||||
EOF
|
||||
echo -n "abc" | ${DIGESTDIR}/digest sha256 > output1
|
||||
echo -n "abc" | ${DIGESTDIR}/digest sha384 >> output1
|
||||
echo -n "abc" | ${DIGESTDIR}/digest sha512 >> output1
|
||||
diff expected1 output1 || echo "*** WARNING: output differs in test 1 ***"
|
||||
|
||||
rm -f expected1 output1
|
||||
|
||||
cat > expected2 << EOF
|
||||
248d6a61d20638b8e5c026930c3e6039a33ce45964ff2167f6ecedd419db06c1
|
||||
3391fdddfc8dc7393707a65b1b4709397cf8b1d162af05abfe8f450de5f36bc6b0455a8520bc4e6f5fe95b1fe3c8452b
|
||||
204a8fc6dda82f0a0ced7beb8e08a41657c16ef468b228a8279be331a703c33596fd15c13b1b07f9aa1d3bea57789ca031ad85c7a71dd70354ec631238ca3445
|
||||
EOF
|
||||
echo -n "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq" | ${DIGESTDIR}/digest sha256 > output2
|
||||
echo -n "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq" | ${DIGESTDIR}/digest sha384 >> output2
|
||||
echo -n "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq" | ${DIGESTDIR}/digest sha512 >> output2
|
||||
diff expected2 output2 || echo "*** WARNING: output differs in test 2 ***"
|
||||
|
||||
rm -f expected2 output2
|
||||
|
||||
exit 0
|
Loading…
Reference in a new issue