diff options
author | djm@openbsd.org <djm@openbsd.org> | 2015-01-20 23:58:57 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2015-01-26 14:03:12 +0100 |
commit | 2b3b1c1e4bd9577b6e780c255c278542ea66c098 (patch) | |
tree | 2278f8f5bd10c61796fe35dc6ce4f8f89e67ac3a /regress/Makefile | |
parent | upstream commit (diff) | |
download | openssh-2b3b1c1e4bd9577b6e780c255c278542ea66c098.tar.xz openssh-2b3b1c1e4bd9577b6e780c255c278542ea66c098.zip |
upstream commit
use SUBDIR to recuse into unit tests; makes "make obj"
actually work
Diffstat (limited to 'regress/Makefile')
-rw-r--r-- | regress/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/regress/Makefile b/regress/Makefile index 1c02aa819..c920661ae 100644 --- a/regress/Makefile +++ b/regress/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.76 2015/01/18 22:00:18 djm Exp $ +# $OpenBSD: Makefile,v 1.77 2015/01/20 22:58:57 djm Exp $ REGRESS_TARGETS= unit t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 t11 t12 t-exec tests: $(REGRESS_TARGETS) @@ -205,4 +205,6 @@ unit: ${.OBJDIR}/unittests/sshbuf/test_sshbuf ; \ ${.OBJDIR}/unittests/sshkey/test_sshkey \ -d ${.CURDIR}//unittests/sshkey/testdata ; \ + ${.OBJDIR}/unittests/bitmap/test_bitmap ; \ + ${.OBJDIR}/unittests/kex/test_kex ; \ fi |