diff options
author | Damien Miller <djm@mindrot.org> | 2012-12-12 10:54:37 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2012-12-12 10:54:37 +1100 |
commit | 1fb593a3f198b75787c5c5974fe256122427d1d3 (patch) | |
tree | 7413aa501ef522bd54386dfafdacfc26be44fd08 /regress/Makefile | |
parent | 1a45b63d7b4fe34e18ab4cc669669003e6f8e403 (diff) |
- markus@cvs.openbsd.org 2012/12/11 22:42:11
[regress/Makefile regress/modpipe.c regress/integrity.sh]
test the integrity of the packets; with djm@
Diffstat (limited to 'regress/Makefile')
-rw-r--r-- | regress/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/regress/Makefile b/regress/Makefile index c628fb5ff..2eb2e3181 100644 --- a/regress/Makefile +++ b/regress/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.60 2012/12/02 20:47:48 djm Exp $ | 1 | # $OpenBSD: Makefile,v 1.61 2012/12/11 22:42:11 markus Exp $ |
2 | 2 | ||
3 | REGRESS_TARGETS= t1 t2 t3 t4 t5 t6 t7 t8 t9 t-exec | 3 | REGRESS_TARGETS= t1 t2 t3 t4 t5 t6 t7 t8 t9 t-exec |
4 | tests: $(REGRESS_TARGETS) | 4 | tests: $(REGRESS_TARGETS) |
@@ -59,7 +59,8 @@ LTESTS= connect \ | |||
59 | cert-userkey \ | 59 | cert-userkey \ |
60 | host-expand \ | 60 | host-expand \ |
61 | keys-command \ | 61 | keys-command \ |
62 | forward-control | 62 | forward-control \ |
63 | integrity | ||
63 | 64 | ||
64 | INTEROP_TESTS= putty-transfer putty-ciphers putty-kex conch-ciphers | 65 | INTEROP_TESTS= putty-transfer putty-ciphers putty-kex conch-ciphers |
65 | #INTEROP_TESTS+=ssh-com ssh-com-client ssh-com-keygen ssh-com-sftp | 66 | #INTEROP_TESTS+=ssh-com ssh-com-client ssh-com-keygen ssh-com-sftp |
@@ -142,7 +143,9 @@ t9: $(OBJ)/t9.out | |||
142 | test "${TEST_SSH_ECC}" != yes || \ | 143 | test "${TEST_SSH_ECC}" != yes || \ |
143 | ${TEST_SSH_SSHKEYGEN} -Bf $(OBJ)/t9.out > /dev/null | 144 | ${TEST_SSH_SSHKEYGEN} -Bf $(OBJ)/t9.out > /dev/null |
144 | 145 | ||
145 | t-exec: ${LTESTS:=.sh} | 146 | modpipe: modpipe.c |
147 | |||
148 | t-exec: modpipe ${LTESTS:=.sh} | ||
146 | @if [ "x$?" = "x" ]; then exit 0; fi; \ | 149 | @if [ "x$?" = "x" ]; then exit 0; fi; \ |
147 | for TEST in ""$?; do \ | 150 | for TEST in ""$?; do \ |
148 | echo "run test $${TEST}" ... 1>&2; \ | 151 | echo "run test $${TEST}" ... 1>&2; \ |