summaryrefslogtreecommitdiff
path: root/regress/Makefile
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2013-12-07 16:32:44 +1100
committerDamien Miller <djm@mindrot.org>2013-12-07 16:32:44 +1100
commitf54542af3ad07532188b10136ae302314ec69ed6 (patch)
tree2caa3c595bd1177bd6bfabecc47c8af69d33d6c8 /regress/Makefile
parentf104da263de995f66b6861b4f3368264ee483d7f (diff)
- markus@cvs.openbsd.org 2013/12/06 13:52:46
[regress/Makefile regress/agent.sh regress/cert-hostkey.sh] [regress/cert-userkey.sh regress/keytype.sh] test ed25519 support; from djm@
Diffstat (limited to 'regress/Makefile')
-rw-r--r--regress/Makefile12
1 files changed, 10 insertions, 2 deletions
diff --git a/regress/Makefile b/regress/Makefile
index eca634a60..098f2014b 100644
--- a/regress/Makefile
+++ b/regress/Makefile
@@ -1,6 +1,6 @@
1# $OpenBSD: Makefile,v 1.66 2013/10/09 23:44:14 djm Exp $ 1# $OpenBSD: Makefile,v 1.67 2013/12/06 13:52:46 markus Exp $
2 2
3REGRESS_TARGETS= t1 t2 t3 t4 t5 t6 t7 t8 t9 t-exec 3REGRESS_TARGETS= t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 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
@@ -153,6 +153,14 @@ t9: $(OBJ)/t9.out
153 test "${TEST_SSH_ECC}" != yes || \ 153 test "${TEST_SSH_ECC}" != yes || \
154 ${TEST_SSH_SSHKEYGEN} -Bf $(OBJ)/t9.out > /dev/null 154 ${TEST_SSH_SSHKEYGEN} -Bf $(OBJ)/t9.out > /dev/null
155 155
156
157$(OBJ)/t10.out:
158 ${TEST_SSH_SSHKEYGEN} -q -t ed25519 -N '' -f $@
159
160t10: $(OBJ)/t10.out
161 ${TEST_SSH_SSHKEYGEN} -lf $(OBJ)/t10.out > /dev/null
162 ${TEST_SSH_SSHKEYGEN} -Bf $(OBJ)/t10.out > /dev/null
163
156t-exec: ${LTESTS:=.sh} 164t-exec: ${LTESTS:=.sh}
157 @if [ "x$?" = "x" ]; then exit 0; fi; \ 165 @if [ "x$?" = "x" ]; then exit 0; fi; \
158 for TEST in ""$?; do \ 166 for TEST in ""$?; do \