summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2022-07-14 08:33:31 +0000
committertb <>2022-07-14 08:33:31 +0000
commite345078d4cadc55151fab159d8ad1fb77d294d8a (patch)
treef6abbcf9ba6b24c2dfa0283cd7f8679b2e354c94
parentdf2f79bc87c8cf2c4da55daebba22c88ab578d3e (diff)
downloadopenbsd-e345078d4cadc55151fab159d8ad1fb77d294d8a.tar.gz
openbsd-e345078d4cadc55151fab159d8ad1fb77d294d8a.tar.bz2
openbsd-e345078d4cadc55151fab159d8ad1fb77d294d8a.zip
Only run the client connection test with supported ciphers. Avoids test
breakage also noted by anton.
-rwxr-xr-xsrc/regress/usr.bin/openssl/appstest.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regress/usr.bin/openssl/appstest.sh b/src/regress/usr.bin/openssl/appstest.sh
index d708ae28b5..8ad3df1949 100755
--- a/src/regress/usr.bin/openssl/appstest.sh
+++ b/src/regress/usr.bin/openssl/appstest.sh
@@ -1,6 +1,6 @@
1#!/bin/sh 1#!/bin/sh
2# 2#
3# $OpenBSD: appstest.sh,v 1.54 2022/02/05 18:36:08 tb Exp $ 3# $OpenBSD: appstest.sh,v 1.55 2022/07/14 08:33:31 tb Exp $
4# 4#
5# Copyright (c) 2016 Kinichiro Inoguchi <inoguchi@openbsd.org> 5# Copyright (c) 2016 Kinichiro Inoguchi <inoguchi@openbsd.org>
6# 6#
@@ -1569,7 +1569,7 @@ function test_sc_all_cipher {
1569 cipher_string="ALL:!ECDSA:!kGOST:!TLSv1.3" 1569 cipher_string="ALL:!ECDSA:!kGOST:!TLSv1.3"
1570 fi 1570 fi
1571 fi 1571 fi
1572 $c_bin ciphers -v $cipher_string | awk '{print $1}' > $c_ciph 1572 $c_bin ciphers -s -v $cipher_string | awk '{print $1}' > $c_ciph
1573 1573
1574 grep -x -f $s_ciph $c_ciph | sort -R > $ciphers 1574 grep -x -f $s_ciph $c_ciph | sort -R > $ciphers
1575 fi 1575 fi