Remove standalone tinyCrypt tests from all.sh

tinyCrypt is still tested in the baremetal tests since it
is enabled in baremetal.h. Tests for minimal modifictions
of the default / full config enabling tinyCrypt will be
added elsewhere.
This commit is contained in:
Hanno Becker 2019-07-25 09:45:50 +01:00
parent b72fc6a648
commit 19bf09ee92

View file

@ -1266,19 +1266,6 @@ component_test_no_64bit_multiplication () {
make test make test
} }
component_build_tinycrypt_cmake () {
msg "build: tinycrypt native, cmake"
scripts/config.pl set MBEDTLS_USE_TINYCRYPT
CC=gcc cmake .
make
}
component_build_tinycrypt_make () {
msg "build: tinycrypt native, make"
scripts/config.pl set MBEDTLS_USE_TINYCRYPT
make CC=gcc CFLAGS='-Werror -O1'
}
component_test_no_x509_info () { component_test_no_x509_info () {
msg "build: full + MBEDTLS_X509_REMOVE_INFO" # ~ 10s msg "build: full + MBEDTLS_X509_REMOVE_INFO" # ~ 10s
scripts/config.pl full scripts/config.pl full
@ -1355,15 +1342,6 @@ component_test_baremetal () {
if_build_succeeded tests/ssl-opt.sh --filter "^Default, DTLS$" if_build_succeeded tests/ssl-opt.sh --filter "^Default, DTLS$"
} }
component_build_armcc_tinycrypt_baremetal () {
msg "build: ARM Compiler 5, make with tinycrypt and baremetal"
scripts/config.pl baremetal
scripts/config.pl set MBEDTLS_USE_TINYCRYPT
make CC="$ARMC5_CC" AR="$ARMC5_AR" WARNING_CFLAGS='--strict --c99' lib
make clean
}
component_test_allow_sha1 () { component_test_allow_sha1 () {
msg "build: allow SHA1 in certificates by default" msg "build: allow SHA1 in certificates by default"
scripts/config.pl set MBEDTLS_TLS_DEFAULT_ALLOW_SHA1_IN_CERTIFICATES scripts/config.pl set MBEDTLS_TLS_DEFAULT_ALLOW_SHA1_IN_CERTIFICATES