]> andersk Git - gssapi-openssh.git/blame - openssh/regress/putty-kex.sh
The man2html from jbasney on pkilab2 works whereas the standard one doesn't.
[gssapi-openssh.git] / openssh / regress / putty-kex.sh
CommitLineData
e8439bd3 1# $OpenBSD: putty-kex.sh,v 1.1 2007/12/21 04:13:53 djm Exp $
2# Placed in the Public Domain.
3
4tid="putty KEX"
5
6DATA=/bin/ls
7COPY=${OBJ}/copy
8
9set -e
10
11if test "x$REGRESS_INTEROP_PUTTY" != "xyes" ; then
12 fatal "putty interop tests not enabled"
13fi
14
15for k in dh-gex-sha1 dh-group1-sha1 dh-group14-sha1 ; do
16 verbose "$tid: kex $k"
17 cp ${OBJ}/.putty/sessions/localhost_proxy \
18 ${OBJ}/.putty/sessions/kex_$k
19 echo "KEX=$k" >> ${OBJ}/.putty/sessions/kex_$k
20
21 env HOME=$PWD ${PLINK} -load kex_$k -batch -i putty.rsa2 \
22 127.0.0.1 true
23 if [ $? -ne 0 ]; then
24 fail "KEX $k failed"
25 fi
26done
27
This page took 0.34284 seconds and 5 git commands to generate.