summaryrefslogtreecommitdiff
path: root/regress/unittests/hostkeys/Makefile
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2015-02-16 22:18:34 +0000
committerDamien Miller <djm@mindrot.org>2015-02-17 09:34:48 +1100
commitef575ef20d09f20722e26b45dab80b3620469687 (patch)
tree685faaacd2a1bb2f4a9d03be0b98cf208d4291fa /regress/unittests/hostkeys/Makefile
parent8ea3365e6aa2759ccf5c76eaea62cbc8a280b0e7 (diff)
upstream commit
unit tests for hostfile.c code, just hostkeys_foreach so far
Diffstat (limited to 'regress/unittests/hostkeys/Makefile')
-rw-r--r--regress/unittests/hostkeys/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/regress/unittests/hostkeys/Makefile b/regress/unittests/hostkeys/Makefile
new file mode 100644
index 000000000..f52a85fb1
--- /dev/null
+++ b/regress/unittests/hostkeys/Makefile
@@ -0,0 +1,12 @@
1# $OpenBSD: Makefile,v 1.1 2015/02/16 22:18:34 djm Exp $
2
3TEST_ENV= "MALLOC_OPTIONS=AFGJPRX"
4
5PROG=test_hostkeys
6SRCS=tests.c test_iterate.c
7REGRESS_TARGETS=run-regress-${PROG}
8
9run-regress-${PROG}: ${PROG}
10 env ${TEST_ENV} ./${PROG} -d ${.CURDIR}/testdata
11
12.include <bsd.regress.mk>