diff options
Diffstat (limited to 'regress/unittests/sshbuf')
-rw-r--r-- | regress/unittests/sshbuf/Makefile | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/regress/unittests/sshbuf/Makefile b/regress/unittests/sshbuf/Makefile index 69b27566b..81d4f27a6 100644 --- a/regress/unittests/sshbuf/Makefile +++ b/regress/unittests/sshbuf/Makefile | |||
@@ -1,4 +1,6 @@ | |||
1 | # $OpenBSD: Makefile,v 1.5 2016/11/01 13:43:27 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.6 2017/12/21 00:41:22 djm Exp $ |
2 | |||
3 | .include <bsd.regress.mk> | ||
2 | 4 | ||
3 | PROG=test_sshbuf | 5 | PROG=test_sshbuf |
4 | SRCS=tests.c | 6 | SRCS=tests.c |
@@ -10,5 +12,11 @@ SRCS+=test_sshbuf_fuzz.c | |||
10 | SRCS+=test_sshbuf_getput_fuzz.c | 12 | SRCS+=test_sshbuf_getput_fuzz.c |
11 | SRCS+=test_sshbuf_fixed.c | 13 | SRCS+=test_sshbuf_fixed.c |
12 | 14 | ||
13 | .include <bsd.regress.mk> | 15 | # From usr.bin/ssh |
16 | SRCS+=sshbuf-getput-basic.c sshbuf-getput-crypto.c sshbuf-misc.c sshbuf.c | ||
17 | SRCS+=atomicio.c | ||
18 | |||
19 | run-regress-${PROG}: ${PROG} | ||
20 | env ${TEST_ENV} ./${PROG} | ||
21 | |||
14 | 22 | ||