Skip to content

Commit

Permalink
fix for runtests.sh: skip non-working OpenSSL versions (#244)
Browse files Browse the repository at this point in the history
* fix for runtests.sh: skip non-working OpenSSL versions
  • Loading branch information
bhess authored Sep 4, 2023
1 parent 4c5b78b commit cc3895f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/runtests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,9 @@ export LOCALTESTONLY="Yes"
echo "Version information:"
"${OPENSSL_APP}" version

# Disable testing for version 3.0.1: Buggy as hell:
if "${OPENSSL_APP}" version | grep -q "OpenSSL 3.0.1"; then
echo "Skipping testing of buggy OpenSSL 3.0.1"
# Disable testing for a few versions: Buggy as hell:
if "${OPENSSL_APP}" version | grep -qE 'OpenSSL (3\.0\.(0|1|4)) '; then
echo "Skipping testing of buggy OpenSSL versions 3.0.0, 3.0.1 and 3.0.4"
exit 0
fi

Expand Down

0 comments on commit cc3895f

Please sign in to comment.