summaryrefslogtreecommitdiff
path: root/regress/usr.bin/openssl
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2022-07-14 08:33:32 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2022-07-14 08:33:32 +0000
commite32cc873de91b97892ef47d1437b7a0eb6cffdd9 (patch)
treeb12fe76963b7ecdb094223ac12fad519b64ff2db /regress/usr.bin/openssl
parent3f22cd85261b1b1b5fa1172ca65e54d2e3ab3927 (diff)
Only run the client connection test with supported ciphers. Avoids test
breakage also noted by anton.
Diffstat (limited to 'regress/usr.bin/openssl')
-rwxr-xr-xregress/usr.bin/openssl/appstest.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/usr.bin/openssl/appstest.sh b/regress/usr.bin/openssl/appstest.sh
index d708ae28b5b..8ad3df1949a 100755
--- a/regress/usr.bin/openssl/appstest.sh
+++ b/regress/usr.bin/openssl/appstest.sh
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# $OpenBSD: appstest.sh,v 1.54 2022/02/05 18:36:08 tb Exp $
+# $OpenBSD: appstest.sh,v 1.55 2022/07/14 08:33:31 tb Exp $
#
# Copyright (c) 2016 Kinichiro Inoguchi <inoguchi@openbsd.org>
#
@@ -1569,7 +1569,7 @@ function test_sc_all_cipher {
cipher_string="ALL:!ECDSA:!kGOST:!TLSv1.3"
fi
fi
- $c_bin ciphers -v $cipher_string | awk '{print $1}' > $c_ciph
+ $c_bin ciphers -s -v $cipher_string | awk '{print $1}' > $c_ciph
grep -x -f $s_ciph $c_ciph | sort -R > $ciphers
fi