Restore original comments

pull/7945/head
Colton Willey 2024-09-05 15:10:50 -07:00
parent f749ca387d
commit 9ad4e565fe
3 changed files with 2 additions and 19 deletions

View File

@ -15,12 +15,7 @@ if ! ./examples/client/client -V | grep -q 3; then
exit 77
fi
# These tests do not run by default, we will call these opt in. There are
# additional default tests that require network connection, those are
# opt out.
# Not defining WOLFSSL_EXTERNAL_TEST runs only opt out.
# Defining WOLFSSL_EXTERNAL_TEST!=0 runs opt out and opt in.
# Defining WOLFSSL_EXTERNAL_TEST=0 does not run opt in or opt out.
# cloudflare seems to change CAs quickly, disabled by default
if ! test -n "$WOLFSSL_EXTERNAL_TEST"; then
echo "WOLFSSL_EXTERNAL_TEST not set, won't run"
exit 77
@ -30,7 +25,7 @@ if test "$WOLFSSL_EXTERNAL_TEST" == "0"; then
exit 77
fi
# cloudflare seems to change CAs quickly, disabled by default
BUILD_FLAGS="$(./examples/client/client '-#')"
if echo "$BUILD_FLAGS" | fgrep -q -e ' -DWOLFSSL_SNIFFER '; then
echo 'skipping WOLFSSL_EXTERNAL_TEST because -DWOLFSSL_SNIFFER configuration of build is incompatible.'

View File

@ -6,12 +6,6 @@ server=www.google.com
[ ! -x ./examples/client/client ] && echo -e "\n\nClient doesn't exist" && exit 1
# These tests do not run by default, we will call these opt in. There are
# additional default tests that require network connection, those are
# opt out.
# Not defining WOLFSSL_EXTERNAL_TEST runs only opt out.
# Defining WOLFSSL_EXTERNAL_TEST!=0 runs opt out and opt in.
# Defining WOLFSSL_EXTERNAL_TEST=0 does not run opt in or opt out.
if ! test -n "$WOLFSSL_EXTERNAL_TEST"; then
echo "WOLFSSL_EXTERNAL_TEST not set, won't run"
exit 77

View File

@ -11,12 +11,6 @@ if [[ -z "${RETRIES_REMAINING-}" ]]; then
export RETRIES_REMAINING=2
fi
# These tests do run by default, we will call these opt out. There are
# additional non-default tests that require network connection, those are
# opt in.
# Not defining WOLFSSL_EXTERNAL_TEST runs only opt out.
# Defining WOLFSSL_EXTERNAL_TEST!=0 runs opt out and opt in.
# Defining WOLFSSL_EXTERNAL_TEST=0 does not run opt in or opt out.
if test "$WOLFSSL_EXTERNAL_TEST" == "0"; then
echo 'skipping oscp-stapling.test because WOLFSSL_EXTERNAL_TEST is \
defined to the value 0.'