summaryrefslogtreecommitdiff
path: root/regress/sshcfgparse.sh
diff options
context:
space:
mode:
authordtucker@openbsd.org <dtucker@openbsd.org>2016-07-14 01:24:21 +0000
committerDarren Tucker <dtucker@zip.com.au>2016-07-14 11:39:34 +1000
commitee67716f61f1042d5e67f91c23707cca5dcdd7d0 (patch)
tree18bf7ebc9fa098d5e1b1cb5283b25f1aa4ad77f0 /regress/sshcfgparse.sh
parent372807c2065c8572fdc6478b25cc5ac363743073 (diff)
upstream commit
Correct equal in test. Upstream-Regress-ID: 4e32f7a5c57a619c4e8766cb193be2a1327ec37a
Diffstat (limited to 'regress/sshcfgparse.sh')
-rw-r--r--regress/sshcfgparse.sh14
1 files changed, 7 insertions, 7 deletions
diff --git a/regress/sshcfgparse.sh b/regress/sshcfgparse.sh
index f8645d6f1..010e02865 100644
--- a/regress/sshcfgparse.sh
+++ b/regress/sshcfgparse.sh
@@ -1,4 +1,4 @@
1# $OpenBSD: sshcfgparse.sh,v 1.1 2016/06/03 04:10:41 dtucker Exp $ 1# $OpenBSD: sshcfgparse.sh,v 1.2 2016/07/14 01:24:21 dtucker Exp $
2# Placed in the Public Domain. 2# Placed in the Public Domain.
3 3
4tid="ssh config parse" 4tid="ssh config parse"
@@ -10,20 +10,20 @@ verbose "reparse minimal config"
10 10
11verbose "ssh -W opts" 11verbose "ssh -W opts"
12f=`${SSH} -GF $OBJ/ssh_config host | awk '/exitonforwardfailure/{print $2}'` 12f=`${SSH} -GF $OBJ/ssh_config host | awk '/exitonforwardfailure/{print $2}'`
13test "$f" == "no" || fail "exitonforwardfailure default" 13test "$f" = "no" || fail "exitonforwardfailure default"
14f=`${SSH} -GF $OBJ/ssh_config -W a:1 h | awk '/exitonforwardfailure/{print $2}'` 14f=`${SSH} -GF $OBJ/ssh_config -W a:1 h | awk '/exitonforwardfailure/{print $2}'`
15test "$f" == "yes" || fail "exitonforwardfailure enable" 15test "$f" = "yes" || fail "exitonforwardfailure enable"
16f=`${SSH} -GF $OBJ/ssh_config -W a:1 -o exitonforwardfailure=no h | \ 16f=`${SSH} -GF $OBJ/ssh_config -W a:1 -o exitonforwardfailure=no h | \
17 awk '/exitonforwardfailure/{print $2}'` 17 awk '/exitonforwardfailure/{print $2}'`
18test "$f" == "no" || fail "exitonforwardfailure override" 18test "$f" = "no" || fail "exitonforwardfailure override"
19 19
20f=`${SSH} -GF $OBJ/ssh_config host | awk '/clearallforwardings/{print $2}'` 20f=`${SSH} -GF $OBJ/ssh_config host | awk '/clearallforwardings/{print $2}'`
21test "$f" == "no" || fail "clearallforwardings default" 21test "$f" = "no" || fail "clearallforwardings default"
22f=`${SSH} -GF $OBJ/ssh_config -W a:1 h | awk '/clearallforwardings/{print $2}'` 22f=`${SSH} -GF $OBJ/ssh_config -W a:1 h | awk '/clearallforwardings/{print $2}'`
23test "$f" == "yes" || fail "clearallforwardings enable" 23test "$f" = "yes" || fail "clearallforwardings enable"
24f=`${SSH} -GF $OBJ/ssh_config -W a:1 -o clearallforwardings=no h | \ 24f=`${SSH} -GF $OBJ/ssh_config -W a:1 -o clearallforwardings=no h | \
25 awk '/clearallforwardings/{print $2}'` 25 awk '/clearallforwardings/{print $2}'`
26test "$f" == "no" || fail "clearallforwardings override" 26test "$f" = "no" || fail "clearallforwardings override"
27 27
28# cleanup 28# cleanup
29rm -f $OBJ/ssh_config.[012] 29rm -f $OBJ/ssh_config.[012]