Convert retry test to use hq-interop client

Reviewed-by: Sasa Nedvedicky <sashan@openssl.org>
Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/25426)
This commit is contained in:
Neil Horman 2024-08-29 12:11:15 -04:00
parent 2858149e44
commit 1df1cb4383

View File

@ -46,7 +46,7 @@ if [ "$ROLE" == "client" ]; then
fi
exit 0
;;
"handshake"|"transfer")
"handshake"|"transfer"|"retry")
HOSTNAME=none
for req in $REQUESTS
do
@ -65,11 +65,6 @@ if [ "$ROLE" == "client" ]; then
fi
exit 0
;;
"retry")
OUTFILE=$(basename $REQUESTS)
SSL_CERT_FILE=/certs/ca.pem curl --verbose --http3 -o /downloads/$OUTFILE $REQUESTS || exit 1
exit 0
;;
"chacha20")
OUTFILE=$(basename $REQUESTS)
SSL_CERT_FILE=/certs/ca.pem curl --verbose --tlsv1.3 --tls13-ciphers TLS_CHACHA20_POLY1305_SHA256 --http3 -o /downloads/$OUTFILE $REQUESTS || exit 1