Skip to content

Commit

Permalink
guard on test case for TLS versions supported
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobBarthelmeh committed Dec 28, 2024
1 parent 2322ee2 commit 0673783
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions scripts/openssl.test
Original file line number Diff line number Diff line change
Expand Up @@ -1261,12 +1261,19 @@ then
crl="-C"
wolfSuite="ALL"
wolfssl_no_resume="yes"
version="4"
port=$server_port
do_wolfssl_client

version="3"
do_wolfssl_client
if [ "$wolf_tls13" != "" ]
then
version="4"
do_wolfssl_client
fi

if [ "$wolf_tls" != "" ]
then
version="3"
do_wolfssl_client
fi
fi
fi
do_cleanup
Expand Down

0 comments on commit 0673783

Please sign in to comment.