diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2014-06-24 01:14:19 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2014-06-24 01:14:19 +0000 |
commit | d13708b95430abd20d6e2db1263f826e6077dce4 (patch) | |
tree | 8c16ebd24a1e210c2a38c1502206ab6562f3bf1f /regress/usr.bin/ssh/unittests/sshkey/Makefile | |
parent | 6eeffb4d8cef5c4af07cdfe1568ddd07732d938d (diff) |
unit and fuzz tests for new key API
Diffstat (limited to 'regress/usr.bin/ssh/unittests/sshkey/Makefile')
-rw-r--r-- | regress/usr.bin/ssh/unittests/sshkey/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/regress/usr.bin/ssh/unittests/sshkey/Makefile b/regress/usr.bin/ssh/unittests/sshkey/Makefile new file mode 100644 index 00000000000..1bcd266762a --- /dev/null +++ b/regress/usr.bin/ssh/unittests/sshkey/Makefile @@ -0,0 +1,13 @@ +# $OpenBSD: Makefile,v 1.1 2014/06/24 01:14:18 djm Exp $ + +TEST_ENV= "MALLOC_OPTIONS=AFGJPRX" + +PROG=test_sshkey +SRCS=tests.c test_sshkey.c test_file.c test_fuzz.c common.c +REGRESS_TARGETS=run-regress-${PROG} + +run-regress-${PROG}: ${PROG} + env ${TEST_ENV} ./${PROG} -d ${.CURDIR}/testdata + +.include <bsd.regress.mk> + |