diff options
Diffstat (limited to 'regress/Makefile')
-rw-r--r-- | regress/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/regress/Makefile b/regress/Makefile index 3feb7a997..2905a0d0a 100644 --- a/regress/Makefile +++ b/regress/Makefile | |||
@@ -1,6 +1,6 @@ | |||
1 | # $OpenBSD: Makefile,v 1.70 2014/06/24 01:14:17 djm Exp $ | 1 | # $OpenBSD: Makefile,v 1.71 2014/12/22 02:15:52 djm Exp $ |
2 | 2 | ||
3 | REGRESS_TARGETS= unit 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 t11 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 |
@@ -119,7 +119,7 @@ t3: | |||
119 | ${TEST_SSH_SSHKEYGEN} -if $(OBJ)/t3.out | diff - ${.CURDIR}/rsa_openssh.pub | 119 | ${TEST_SSH_SSHKEYGEN} -if $(OBJ)/t3.out | diff - ${.CURDIR}/rsa_openssh.pub |
120 | 120 | ||
121 | t4: | 121 | t4: |
122 | ${TEST_SSH_SSHKEYGEN} -lf ${.CURDIR}/rsa_openssh.pub |\ | 122 | ${TEST_SSH_SSHKEYGEN} -E md5 -lf ${.CURDIR}/rsa_openssh.pub |\ |
123 | awk '{print $$2}' | diff - ${.CURDIR}/t4.ok | 123 | awk '{print $$2}' | diff - ${.CURDIR}/t4.ok |
124 | 124 | ||
125 | t5: | 125 | t5: |
@@ -164,6 +164,10 @@ t10: $(OBJ)/t10.out | |||
164 | ${TEST_SSH_SSHKEYGEN} -lf $(OBJ)/t10.out > /dev/null | 164 | ${TEST_SSH_SSHKEYGEN} -lf $(OBJ)/t10.out > /dev/null |
165 | ${TEST_SSH_SSHKEYGEN} -Bf $(OBJ)/t10.out > /dev/null | 165 | ${TEST_SSH_SSHKEYGEN} -Bf $(OBJ)/t10.out > /dev/null |
166 | 166 | ||
167 | t11: | ||
168 | ${TEST_SSH_SSHKEYGEN} -E sha256 -lf ${.CURDIR}/rsa_openssh.pub |\ | ||
169 | awk '{print $$2}' | diff - ${.CURDIR}/t11.ok | ||
170 | |||
167 | t-exec: ${LTESTS:=.sh} | 171 | t-exec: ${LTESTS:=.sh} |
168 | @if [ "x$?" = "x" ]; then exit 0; fi; \ | 172 | @if [ "x$?" = "x" ]; then exit 0; fi; \ |
169 | for TEST in ""$?; do \ | 173 | for TEST in ""$?; do \ |