diff options
Diffstat (limited to 'regress/Makefile')
-rw-r--r-- | regress/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/regress/Makefile b/regress/Makefile index 6e3b8d634..1e1f68dc3 100644 --- a/regress/Makefile +++ b/regress/Makefile | |||
@@ -1,6 +1,6 @@ | |||
1 | # $OpenBSD: Makefile,v 1.68 2014/01/25 04:35:32 dtucker Exp $ | 1 | # $OpenBSD: Makefile,v 1.68 2014/01/25 04:35:32 dtucker Exp $ |
2 | 2 | ||
3 | REGRESS_TARGETS= t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 t-exec | 3 | REGRESS_TARGETS= unit t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 t-exec |
4 | tests: $(REGRESS_TARGETS) | 4 | tests: $(REGRESS_TARGETS) |
5 | 5 | ||
6 | # Interop tests are not run by default | 6 | # Interop tests are not run by default |
@@ -180,3 +180,7 @@ t-exec-interop: ${INTEROP_TESTS:=.sh} | |||
180 | 180 | ||
181 | # Not run by default | 181 | # Not run by default |
182 | interop: ${INTEROP_TARGETS} | 182 | interop: ${INTEROP_TARGETS} |
183 | |||
184 | # Unit tests, built by top-level Makefile | ||
185 | unit: | ||
186 | ${.OBJDIR}/unittests/sshbuf/test_sshbuf | ||