]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
upstream: Test for empty result in expected bits. Remove CRs from log
authordtucker@openbsd.org <dtucker@openbsd.org>
Fri, 27 Sep 2019 05:25:12 +0000 (05:25 +0000)
committerDarren Tucker <dtucker@dtucker.net>
Fri, 27 Sep 2019 05:36:22 +0000 (15:36 +1000)
as they confuse tools on some platforms.  Re-enable the 3des-cbc test.

OpenBSD-Regress-ID: edf536d4f29fc1ba412889b37247a47f1b49d250

regress/dhgex.sh

index 61fc178e890c2f6b8a8146bb4cf0147ebe7d153a..ceb3b5d23c576620969dbf8aa539b7429ec039f8 100644 (file)
@@ -1,4 +1,4 @@
-#      $OpenBSD: dhgex.sh,v 1.4 2017/05/08 01:52:49 djm Exp $
+#      $OpenBSD: dhgex.sh,v 1.5 2019/09/27 05:25:12 dtucker Exp $
 #      Placed in the Public Domain.
 
 tid="dhgex"
@@ -28,15 +28,19 @@ ssh_test_dhgex()
        if [ $? -ne 0 ]; then
                fail "ssh failed ($@)"
        fi
+       # Remove CRs.
+       sed 's/\r//' ${LOG} >${LOG}.new
+       mv ${LOG}.new ${LOG}
        # check what we request
        grep "SSH2_MSG_KEX_DH_GEX_REQUEST($groupsz) sent" ${LOG} >/dev/null
        if [ $? != 0 ]; then
                got=`egrep "SSH2_MSG_KEX_DH_GEX_REQUEST(.*) sent" ${LOG}`
                fail "$tid unexpected GEX sizes, expected $groupsz, got $got"
        fi
-       # check what we got (depends on contents of system moduli file)
+       # check what we got.
        gotbits="`awk '/bits set:/{print $4}' ${LOG} | head -1 | cut -f2 -d/`"
-       if [ "$gotbits" -lt "$bits" ]; then
+       trace "expected '$bits' got '$gotbits'"
+       if [ -z "$gotbits" ] || [ "$gotbits" -lt "$bits" ]; then
                fatal "$tid expected $bits bit group, got $gotbits"
        fi
 }
@@ -52,7 +56,7 @@ check()
        done
 }
 
-#check 2048 3des-cbc
+check 3072 3des-cbc  # 112 bits.
 check 3072 `${SSH} -Q cipher | grep 128`
 check 7680 `${SSH} -Q cipher | grep 192`
 check 8192 `${SSH} -Q cipher | grep 256`