a9c431c44f
- Some of the lib/libc and lib/thr tests fail - lib/msun/exp_test:exp2_values now passes with clang 3.8.0 The Makefiles in contrib/netbsd-tests were pruned as they have no value Sponsored by: EMC / Isilon Storage Division
41 lines
790 B
Makefile
41 lines
790 B
Makefile
# $FreeBSD$
|
|
|
|
PACKAGE= tests
|
|
|
|
.include <src.opts.mk>
|
|
|
|
NETBSD_ATF_TESTS_C=
|
|
|
|
.if ${MK_OPENSSL} != "no"
|
|
# XXX: doesn't compile
|
|
#NETBSD_ATF_TESTS_C+= hmac_test
|
|
NETBSD_ATF_TESTS_C+= sha2_test
|
|
.endif
|
|
|
|
NETBSD_ATF_TESTS_SH= hash_test
|
|
|
|
BINDIR= ${TESTSDIR}
|
|
|
|
PROGS+= h_hash
|
|
|
|
FILESGROUPS+= ${PACKAGE}DATA_FILES
|
|
${PACKAGE}DATA_FILESPACKAGE= tests
|
|
|
|
${PACKAGE}DATA_FILESDIR= ${TESTSDIR}/data
|
|
|
|
${PACKAGE}DATA_FILES+= data/md5test-in
|
|
${PACKAGE}DATA_FILES+= data/md5test-out
|
|
${PACKAGE}DATA_FILES+= data/sha1test-in
|
|
${PACKAGE}DATA_FILES+= data/sha1test-out
|
|
${PACKAGE}DATA_FILES+= data/sha1test2-out
|
|
|
|
LIBADD+= md
|
|
LIBADD.sha2_test+= crypto
|
|
|
|
CFLAGS.sha2_test+= -I${SRCTOP}/crypto/openssh/openbsd-compat
|
|
CFLAGS.sha2_test+= -I${SRCTOP}/crypto/openssh
|
|
|
|
.include "../Makefile.netbsd-tests"
|
|
|
|
.include <bsd.test.mk>
|