mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-26 03:45:38 +01:00
all.sh: reorganize testing around deprecated features
build_deprecated combined the testing of deprecated features, and testing of the build without deprecated features. Also, it violated the component naming convention by being called build_xxx but running tests. Replace it by: * test_default_no_deprecated: check that you can remove deprecated features from the default build. * test_full_deprecated_warning: check that enabling DEPRECATED_WARNING doesn't cause any warning from our own code. Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
parent
1e8cafcd3d
commit
77b1f3051a
@ -818,24 +818,32 @@ component_test_full_cmake_clang () {
|
|||||||
if_build_succeeded env OPENSSL_CMD="$OPENSSL_NEXT" tests/compat.sh -e '^$' -f 'ARIA\|CHACHA'
|
if_build_succeeded env OPENSSL_CMD="$OPENSSL_NEXT" tests/compat.sh -e '^$' -f 'ARIA\|CHACHA'
|
||||||
}
|
}
|
||||||
|
|
||||||
component_build_deprecated () {
|
component_test_default_no_deprecated () {
|
||||||
msg "build: make, full config + DEPRECATED_WARNING, gcc -O" # ~ 30s
|
# Test that removing the deprecated features from the default
|
||||||
scripts/config.pl full
|
# configuration leaves something consistent.
|
||||||
scripts/config.pl set MBEDTLS_DEPRECATED_WARNING
|
msg "build: make, default + MBEDTLS_DEPRECATED_REMOVED" # ~ 30s
|
||||||
# Build with -O -Wextra to catch a maximum of issues.
|
|
||||||
make CC=gcc CFLAGS='-O -Werror -Wall -Wextra' lib programs
|
|
||||||
make CC=gcc CFLAGS='-O -Werror -Wall -Wextra -Wno-unused-function' tests
|
|
||||||
|
|
||||||
msg "build: make, full config + DEPRECATED_REMOVED, clang -O" # ~ 30s
|
|
||||||
# No cleanup, just tweak the configuration and rebuild
|
|
||||||
make clean
|
|
||||||
scripts/config.pl unset MBEDTLS_DEPRECATED_WARNING
|
|
||||||
scripts/config.pl set MBEDTLS_DEPRECATED_REMOVED
|
scripts/config.pl set MBEDTLS_DEPRECATED_REMOVED
|
||||||
# Build with -O -Wextra to catch a maximum of issues.
|
make CC=gcc CFLAGS='-O -Werror -Wall -Wextra'
|
||||||
make CC=clang CFLAGS='-O -Werror -Wall -Wextra' lib programs
|
|
||||||
make CC=clang CFLAGS='-O -Werror -Wall -Wextra -Wno-unused-function' tests
|
msg "test: make, default + MBEDTLS_DEPRECATED_REMOVED" # ~ 5s
|
||||||
|
make test
|
||||||
}
|
}
|
||||||
|
|
||||||
|
component_test_full_deprecated_warning () {
|
||||||
|
# Test that there is nothing deprecated in the full configuration.
|
||||||
|
# A deprecated feature would trigger a warning (made fatal) from
|
||||||
|
# MBEDTLS_DEPRECATED_WARNING.
|
||||||
|
msg "build: make, full + MBEDTLS_DEPRECATED_WARNING" # ~ 30s
|
||||||
|
scripts/config.pl full
|
||||||
|
scripts/config.pl unset MBEDTLS_DEPRECATED_REMOVED
|
||||||
|
scripts/config.pl set MBEDTLS_DEPRECATED_WARNING
|
||||||
|
# There are currently no tests for any deprecated feature.
|
||||||
|
# If some are added, 'make test' would trigger warnings here.
|
||||||
|
make CC=gcc CFLAGS='-O -Werror -Wall -Wextra'
|
||||||
|
|
||||||
|
msg "test: make, full + MBEDTLS_DEPRECATED_WARNING" # ~ 5s
|
||||||
|
make test
|
||||||
|
}
|
||||||
|
|
||||||
component_test_depends_curves () {
|
component_test_depends_curves () {
|
||||||
msg "test/build: curves.pl (gcc)" # ~ 4 min
|
msg "test/build: curves.pl (gcc)" # ~ 4 min
|
||||||
|
Loading…
Reference in New Issue
Block a user