1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-01 10:06:53 +03:00

Merge pull request #5312 from gilles-peskine-arm/add_list_config_function-2.x

Backport 2.x: Add list config function
This commit is contained in:
Gilles Peskine
2021-12-20 22:08:01 +01:00
committed by GitHub
6 changed files with 1401 additions and 9 deletions

View File

@ -45,6 +45,7 @@ fi
: ${P_SRV:=../programs/ssl/ssl_server2}
: ${P_CLI:=../programs/ssl/ssl_client2}
: ${P_PXY:=../programs/test/udp_proxy}
: ${P_QUERY:=../programs/test/query_compile_time_config}
: ${OPENSSL_CMD:=openssl} # OPENSSL would conflict with the build system
: ${GNUTLS_CLI:=gnutls-cli}
: ${GNUTLS_SERV:=gnutls-serv}
@ -190,10 +191,7 @@ esac
# testing. Skip non-boolean options (with something other than spaces
# and a comment after "#define SYMBOL"). The variable contains a
# space-separated list of symbols.
CONFIGS_ENABLED=" $(<"$CONFIG_H" \
sed -n 's!^ *#define *\([A-Za-z][0-9A-Z_a-z]*\) *\(/*\)*!\1!p' |
tr '\n' ' ')"
CONFIGS_ENABLED=" $(echo `$P_QUERY -l` )"
# Skip next test; use this macro to skip tests which are legitimate
# in theory and expected to be re-introduced at some point, but
# aren't expected to succeed at the moment due to problems outside
@ -205,7 +203,7 @@ skip_next_test() {
# skip next test if the flag is not enabled in config.h
requires_config_enabled() {
case $CONFIGS_ENABLED in
*" $1 "*) :;;
*" $1"[\ =]*) :;;
*) SKIP_NEXT="YES";;
esac
}
@ -213,7 +211,7 @@ requires_config_enabled() {
# skip next test if the flag is enabled in config.h
requires_config_disabled() {
case $CONFIGS_ENABLED in
*" $1 "*) SKIP_NEXT="YES";;
*" $1"[\ =]*) SKIP_NEXT="YES";;
esac
}