Remove duplicate component for RSA_NO_CRT

This commit is contained in:
Gilles Peskine 2018-11-27 15:59:31 +01:00
parent 8f07312124
commit 9f8f92ca9b

View file

@ -1045,18 +1045,6 @@ component_test_allow_sha1 () {
if_build_succeeded tests/ssl-opt.sh -f SHA-1
}
component_test_rsa_no_crt () {
msg "build: Default + MBEDTLS_RSA_NO_CRT (ASan build)" # ~ 6 min
cleanup
cp "$CONFIG_H" "$CONFIG_BAK"
scripts/config.pl set MBEDTLS_RSA_NO_CRT
CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
make
msg "test: MBEDTLS_RSA_NO_CRT - main suites (inc. selftests) (ASan build)"
make test
}
component_build_mingw () {
msg "build: Windows cross build - mingw64, make (Link Library)" # ~ 30s
cleanup
@ -1267,7 +1255,6 @@ run_component component_build_arm_none_eabi_gcc_no_udbl_division
run_component component_build_arm_none_eabi_gcc_no_64bit_multiplication
run_component component_build_armcc
run_component component_test_allow_sha1
run_component component_test_rsa_no_crt
run_component component_build_mingw
# MemSan currently only available on Linux 64 bits
if uname -a | grep 'Linux.*x86_64' >/dev/null; then