summaryrefslogtreecommitdiff
path: root/regress/Makefile
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2014-12-22 02:15:52 +0000
committerDamien Miller <djm@mindrot.org>2014-12-22 13:21:07 +1100
commit1e30483c8ad2c2f39445d4a4b6ab20c241e40593 (patch)
tree2cf042c0d49a9ad86c665864eb0d6bd4aebe3de7 /regress/Makefile
parent6b40567ed722df98593ad8e6a2d2448fc2b4b151 (diff)
upstream commit
adjust for new SHA256 key fingerprints and slightly-different MD5 hex fingerprint format
Diffstat (limited to 'regress/Makefile')
-rw-r--r--regress/Makefile10
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
3REGRESS_TARGETS= unit t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 t-exec 3REGRESS_TARGETS= unit t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 t11 t-exec
4tests: $(REGRESS_TARGETS) 4tests: $(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
121t4: 121t4:
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
125t5: 125t5:
@@ -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
167t11:
168 ${TEST_SSH_SSHKEYGEN} -E sha256 -lf ${.CURDIR}/rsa_openssh.pub |\
169 awk '{print $$2}' | diff - ${.CURDIR}/t11.ok
170
167t-exec: ${LTESTS:=.sh} 171t-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 \