summaryrefslogtreecommitdiff
path: root/regress/usr.bin/ssh/dhgex.sh
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@cvs.openbsd.org>2019-10-06 11:49:51 +0000
committerDarren Tucker <dtucker@cvs.openbsd.org>2019-10-06 11:49:51 +0000
commite57414593361103a4362f9e0dd41ddd8341d315c (patch)
treeb61b44ea01dc36438c1859ef852340c88b37b054 /regress/usr.bin/ssh/dhgex.sh
parent53c92368315d7ec8929c317c48552fed5f1ad28d (diff)
Instead of running sed over the whole log to remove CRs, remove them
only where it's needed (and confuses test(1) on at least OS X in portable).
Diffstat (limited to 'regress/usr.bin/ssh/dhgex.sh')
-rw-r--r--regress/usr.bin/ssh/dhgex.sh8
1 files changed, 3 insertions, 5 deletions
diff --git a/regress/usr.bin/ssh/dhgex.sh b/regress/usr.bin/ssh/dhgex.sh
index ceb3b5d23c5..ae64a9fb64e 100644
--- a/regress/usr.bin/ssh/dhgex.sh
+++ b/regress/usr.bin/ssh/dhgex.sh
@@ -1,4 +1,4 @@
-# $OpenBSD: dhgex.sh,v 1.5 2019/09/27 05:25:12 dtucker Exp $
+# $OpenBSD: dhgex.sh,v 1.6 2019/10/06 11:49:50 dtucker Exp $
# Placed in the Public Domain.
tid="dhgex"
@@ -28,9 +28,6 @@ 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
@@ -38,7 +35,8 @@ ssh_test_dhgex()
fail "$tid unexpected GEX sizes, expected $groupsz, got $got"
fi
# check what we got.
- gotbits="`awk '/bits set:/{print $4}' ${LOG} | head -1 | cut -f2 -d/`"
+ gotbits="`awk 'BEGIN{FS="/"}/bits set:/{print $2}' ${LOG} |
+ head -1 | tr -d '\r\n'`"
trace "expected '$bits' got '$gotbits'"
if [ -z "$gotbits" ] || [ "$gotbits" -lt "$bits" ]; then
fatal "$tid expected $bits bit group, got $gotbits"