From 8dd28b9d95de3c8780bc24f9df61406697f782be Mon Sep 17 00:00:00 2001 From: tb Date: Thu, 14 Jul 2022 08:33:31 +0000 Subject: [PATCH] Only run the client connection test with supported ciphers. Avoids test breakage also noted by anton. --- regress/usr.bin/openssl/appstest.sh | 4 ++-- 1 file 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 # @@ -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 -- 2.20.1