summaryrefslogtreecommitdiff
path: root/regress/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'regress/Makefile')
-rw-r--r--regress/Makefile21
1 files changed, 14 insertions, 7 deletions
diff --git a/regress/Makefile b/regress/Makefile
index 08fd82dbf..c2dba4fdf 100644
--- a/regress/Makefile
+++ b/regress/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.88 2016/06/03 04:10:41 dtucker Exp $ 1# $OpenBSD: Makefile,v 1.94 2016/12/16 03:51:19 dtucker Exp $
2 2
3REGRESS_TARGETS= unit t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 t11 t12 t-exec 3REGRESS_TARGETS= unit t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 t11 t12 t-exec
4tests: prep $(REGRESS_TARGETS) 4tests: prep $(REGRESS_TARGETS)
@@ -39,6 +39,7 @@ LTESTS= connect \
39 keyscan \ 39 keyscan \
40 keygen-change \ 40 keygen-change \
41 keygen-convert \ 41 keygen-convert \
42 keygen-moduli \
42 key-options \ 43 key-options \
43 scp \ 44 scp \
44 sftp \ 45 sftp \
@@ -77,7 +78,8 @@ LTESTS= connect \
77 hostkey-rotate \ 78 hostkey-rotate \
78 principals-command \ 79 principals-command \
79 cert-file \ 80 cert-file \
80 cfginclude 81 cfginclude \
82 allow-deny-users
81 83
82 84
83# dhgex \ 85# dhgex \
@@ -87,9 +89,10 @@ INTEROP_TESTS= putty-transfer putty-ciphers putty-kex conch-ciphers
87 89
88#LTESTS= cipher-speed 90#LTESTS= cipher-speed
89 91
90USER!= id -un 92USERNAME!= id -un
91CLEANFILES= *.core actual agent-key.* authorized_keys_${USER} \ 93CLEANFILES= *.core actual agent-key.* authorized_keys_${USERNAME} \
92 authorized_keys_${USER}.* authorized_principals_${USER} \ 94 authorized_keys_${USERNAME}.* \
95 authorized_principals_${USERNAME} \
93 banner.in banner.out cert_host_key* cert_user_key* \ 96 banner.in banner.out cert_host_key* cert_user_key* \
94 copy.1 copy.2 data ed25519-agent ed25519-agent* \ 97 copy.1 copy.2 data ed25519-agent ed25519-agent* \
95 ed25519-agent.pub empty.in expect failed-regress.log \ 98 ed25519-agent.pub empty.in expect failed-regress.log \
@@ -111,10 +114,10 @@ CLEANFILES= *.core actual agent-key.* authorized_keys_${USER} \
111 t6.out1 t6.out2 t7.out t7.out.pub t8.out t8.out.pub \ 114 t6.out1 t6.out2 t7.out t7.out.pub t8.out t8.out.pub \
112 t9.out t9.out.pub testdata user_*key* user_ca* user_key* 115 t9.out t9.out.pub testdata user_*key* user_ca* user_key*
113 116
114SUDO_CLEAN+= /var/run/testdata_${USER} /var/run/keycommand_${USER} 117SUDO_CLEAN+= /var/run/testdata_${USERNAME} /var/run/keycommand_${USERNAME}
115 118
116# Enable all malloc(3) randomisations and checks 119# Enable all malloc(3) randomisations and checks
117TEST_ENV= "MALLOC_OPTIONS=AFGJPRX" 120TEST_ENV= "MALLOC_OPTIONS=CFGJRSUX"
118 121
119TEST_SSH_SSHKEYGEN?=ssh-keygen 122TEST_SSH_SSHKEYGEN?=ssh-keygen
120 123
@@ -222,4 +225,8 @@ unit:
222 $$V ${.OBJDIR}/unittests/kex/test_kex ; \ 225 $$V ${.OBJDIR}/unittests/kex/test_kex ; \
223 $$V ${.OBJDIR}/unittests/hostkeys/test_hostkeys \ 226 $$V ${.OBJDIR}/unittests/hostkeys/test_hostkeys \
224 -d ${.CURDIR}/unittests/hostkeys/testdata ; \ 227 -d ${.CURDIR}/unittests/hostkeys/testdata ; \
228 $$V ${.OBJDIR}/unittests/match/test_match ; \
229 if test "x${TEST_SSH_UTF8}" = "xyes" ; then \
230 $$V ${.OBJDIR}/unittests/utf8/test_utf8 ; \
231 fi \
225 fi 232 fi