mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-12-23 06:05:28 +00:00
Make basic-build-test.sh deterministic
Signed-off-by: Manuel Pégourié-Gonnard <manuel.pegourie-gonnard@arm.com>
This commit is contained in:
parent
66e4dffa4e
commit
c2400d38fe
|
@ -160,6 +160,10 @@ pre_initialize_variables () {
|
||||||
FORCE=0
|
FORCE=0
|
||||||
KEEP_GOING=0
|
KEEP_GOING=0
|
||||||
|
|
||||||
|
# Seed value used with the --release-test option.
|
||||||
|
# !!! Keep this in sync with SEED in basic-build-test.sh !!!
|
||||||
|
RELEASE_SEED=1
|
||||||
|
|
||||||
# Default commands, can be overridden by the environment
|
# Default commands, can be overridden by the environment
|
||||||
: ${OPENSSL:="openssl"}
|
: ${OPENSSL:="openssl"}
|
||||||
: ${OPENSSL_LEGACY:="$OPENSSL"}
|
: ${OPENSSL_LEGACY:="$OPENSSL"}
|
||||||
|
@ -245,7 +249,7 @@ General options:
|
||||||
--no-memory No additional memory tests (default).
|
--no-memory No additional memory tests (default).
|
||||||
--out-of-source-dir=<path> Directory used for CMake out-of-source build tests.
|
--out-of-source-dir=<path> Directory used for CMake out-of-source build tests.
|
||||||
--random-seed Use a random seed value for randomized tests (default).
|
--random-seed Use a random seed value for randomized tests (default).
|
||||||
-r|--release-test Run this script in release mode. This fixes the seed value to 1.
|
-r|--release-test Run this script in release mode. This fixes the seed value to ${RELEASE_SEED}.
|
||||||
-s|--seed Integer seed value to use for this test run.
|
-s|--seed Integer seed value to use for this test run.
|
||||||
|
|
||||||
Tool path options:
|
Tool path options:
|
||||||
|
@ -384,7 +388,7 @@ pre_parse_command_line () {
|
||||||
--openssl-next) shift; OPENSSL_NEXT="$1";;
|
--openssl-next) shift; OPENSSL_NEXT="$1";;
|
||||||
--out-of-source-dir) shift; OUT_OF_SOURCE_DIR="$1";;
|
--out-of-source-dir) shift; OUT_OF_SOURCE_DIR="$1";;
|
||||||
--random-seed) unset SEED;;
|
--random-seed) unset SEED;;
|
||||||
--release-test|-r) SEED=1;;
|
--release-test|-r) SEED=$RELEASE_SEED;;
|
||||||
--seed|-s) shift; SEED="$1";;
|
--seed|-s) shift; SEED="$1";;
|
||||||
-*)
|
-*)
|
||||||
echo >&2 "Unknown option: $1"
|
echo >&2 "Unknown option: $1"
|
||||||
|
|
|
@ -83,6 +83,11 @@ fi
|
||||||
: ${GNUTLS_LEGACY_CLI:="$GNUTLS_CLI"}
|
: ${GNUTLS_LEGACY_CLI:="$GNUTLS_CLI"}
|
||||||
: ${GNUTLS_LEGACY_SERV:="$GNUTLS_SERV"}
|
: ${GNUTLS_LEGACY_SERV:="$GNUTLS_SERV"}
|
||||||
|
|
||||||
|
# Used to make ssl-opt.sh deterministic.
|
||||||
|
# !!! Keep this in sync with RELEASE_SEED in all.sh !!!
|
||||||
|
: ${SEED:=1}
|
||||||
|
export SEED
|
||||||
|
|
||||||
# To avoid setting OpenSSL and GnuTLS for each call to compat.sh and ssl-opt.sh
|
# To avoid setting OpenSSL and GnuTLS for each call to compat.sh and ssl-opt.sh
|
||||||
# we just export the variables they require
|
# we just export the variables they require
|
||||||
export OPENSSL_CMD="$OPENSSL"
|
export OPENSSL_CMD="$OPENSSL"
|
||||||
|
|
Loading…
Reference in a new issue