diff options
author | 2013-06-10 21:56:43 +0000 | |
---|---|---|
committer | 2013-06-10 21:56:43 +0000 | |
commit | fd4d939b80a60c07d4eaec880e95b38d09b74db6 (patch) | |
tree | d0ac475be7732ef365b759200158287fbf2d3c5f | |
parent | rework v6_defroute() (diff) | |
download | wireguard-openbsd-fd4d939b80a60c07d4eaec880e95b38d09b74db6.tar.xz wireguard-openbsd-fd4d939b80a60c07d4eaec880e95b38d09b74db6.zip |
Add test for forward config parsing
-rw-r--r-- | regress/usr.bin/ssh/forwarding.sh | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/regress/usr.bin/ssh/forwarding.sh b/regress/usr.bin/ssh/forwarding.sh index 2ba140feedc..f9c261bc756 100644 --- a/regress/usr.bin/ssh/forwarding.sh +++ b/regress/usr.bin/ssh/forwarding.sh @@ -1,4 +1,4 @@ -# $OpenBSD: forwarding.sh,v 1.10 2013/05/17 04:29:14 dtucker Exp $ +# $OpenBSD: forwarding.sh,v 1.11 2013/06/10 21:56:43 dtucker Exp $ # Placed in the Public Domain. tid="local and remote forwarding" @@ -102,3 +102,18 @@ for p in 2; do fail "stdio forwarding proto $p" fi done + +echo "LocalForward ${base}01 127.0.0.1:$PORT" >> ssh_config +echo "RemoteForward ${base}02 127.0.0.1:${base}01" >> ssh_config +for p in 1 2; do + trace "config file: start forwarding, fork to background" + ${SSH} -$p -F $OBJ/ssh_config -f somehost sleep 10 + + trace "config file: transfer over forwarded channels and check result" + ${SSH} -F $OBJ/ssh_config -p${base}02 -o 'ConnectionAttempts=4' \ + somehost cat ${DATA} > ${COPY} + test -f ${COPY} || fail "failed copy of ${DATA}" + cmp ${DATA} ${COPY} || fail "corrupted copy of ${DATA}" + + wait +done |