2024-07-25 13:24:37 +00:00
|
|
|
# components-configuration-x509.sh
|
|
|
|
#
|
|
|
|
# Copyright The Mbed TLS Contributors
|
|
|
|
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
|
|
|
|
2024-07-31 15:39:28 +00:00
|
|
|
# This file contains test components that are executed by all.sh
|
2024-07-25 13:24:37 +00:00
|
|
|
|
|
|
|
################################################################
|
|
|
|
#### Configuration Testing - X509
|
|
|
|
################################################################
|
|
|
|
|
2024-07-26 14:47:17 +00:00
|
|
|
component_test_no_x509_info () {
|
|
|
|
msg "build: full + MBEDTLS_X509_REMOVE_INFO" # ~ 10s
|
2024-10-07 09:10:12 +00:00
|
|
|
scripts/config.py full
|
|
|
|
scripts/config.py unset MBEDTLS_MEMORY_BACKTRACE # too slow for tests
|
|
|
|
scripts/config.py set MBEDTLS_X509_REMOVE_INFO
|
2024-07-26 14:47:17 +00:00
|
|
|
make CFLAGS='-Werror -O2'
|
|
|
|
|
|
|
|
msg "test: full + MBEDTLS_X509_REMOVE_INFO" # ~ 10s
|
|
|
|
make test
|
|
|
|
|
|
|
|
msg "test: ssl-opt.sh, full + MBEDTLS_X509_REMOVE_INFO" # ~ 1 min
|
|
|
|
tests/ssl-opt.sh
|
|
|
|
}
|
2024-07-25 13:24:37 +00:00
|
|
|
|
2024-08-01 11:20:17 +00:00
|
|
|
component_test_sw_inet_pton () {
|
|
|
|
msg "build: default plus MBEDTLS_TEST_SW_INET_PTON"
|
|
|
|
|
|
|
|
# MBEDTLS_TEST_HOOKS required for x509_crt_parse_cn_inet_pton
|
|
|
|
scripts/config.py set MBEDTLS_TEST_HOOKS
|
|
|
|
make CFLAGS="-DMBEDTLS_TEST_SW_INET_PTON"
|
|
|
|
|
|
|
|
msg "test: default plus MBEDTLS_TEST_SW_INET_PTON"
|
|
|
|
make test
|
|
|
|
}
|