mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-02-25 19:36:57 +00:00
Add test for dependencies on HMAC_DRBG in all.sh
Similarly to the recently-added tests for dependencies on CTR_DRBG: constrained environments will probably want only one DRBG module, and we should make sure that tests pass in such a configuration. Signed-off-by: Manuel Pégourié-Gonnard <manuel.pegourie-gonnard@arm.com>
This commit is contained in:
parent
49d3dd0afc
commit
c5243c198c
|
@ -798,7 +798,23 @@ component_test_no_ctr_drbg () {
|
||||||
msg "test: no CTR_DRBG"
|
msg "test: no CTR_DRBG"
|
||||||
make test
|
make test
|
||||||
|
|
||||||
# no SSL tests as they all depend on CTR_DRBG so far
|
# no ssl-opt.sh/compat.sh as they all depend on CTR_DRBG so far
|
||||||
|
}
|
||||||
|
|
||||||
|
component_test_no_hmac_drbg () {
|
||||||
|
msg "build: Full minus HMAC_DRBG"
|
||||||
|
scripts/config.pl full
|
||||||
|
scripts/config.pl unset MBEDTLS_HMAC_DRBG_C
|
||||||
|
scripts/config.pl unset MBEDTLS_ECDSA_DETERMINISTIC # requires HMAC_DRBG
|
||||||
|
|
||||||
|
CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
|
||||||
|
make
|
||||||
|
|
||||||
|
msg "test: no HMAC_DRBG"
|
||||||
|
make test
|
||||||
|
|
||||||
|
# No ssl-opt.sh/compat.sh as they never use HMAC_DRBG so far,
|
||||||
|
# so there's little value in running those lengthy tests here.
|
||||||
}
|
}
|
||||||
|
|
||||||
component_test_small_ssl_out_content_len () {
|
component_test_small_ssl_out_content_len () {
|
||||||
|
|
Loading…
Reference in a new issue