From ee81756a512b364b32e2db73c2a669089581634c Mon Sep 17 00:00:00 2001 From: Hanno Becker Date: Fri, 23 Nov 2018 15:08:32 +0000 Subject: [PATCH] Fix wrong cmake invocation in all.sh testing MBEDTLS_USE_PSA_CRYPTO It should be `cmake -D VAR=1` instead of `cmake -D VAR`. --- tests/scripts/all.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/scripts/all.sh b/tests/scripts/all.sh index 6dba7a51eb..30fe06bbd6 100755 --- a/tests/scripts/all.sh +++ b/tests/scripts/all.sh @@ -655,7 +655,7 @@ scripts/config.pl full scripts/config.pl unset MBEDTLS_MEMORY_BACKTRACE # too slow for tests scripts/config.pl set MBEDTLS_PSA_CRYPTO_C scripts/config.pl set MBEDTLS_USE_PSA_CRYPTO -CC=gcc cmake -D USE_CRYPTO_SUBMODULE -D CMAKE_BUILD_TYPE:String=Asan . +CC=gcc cmake -D USE_CRYPTO_SUBMODULE=1 -D CMAKE_BUILD_TYPE:String=Asan . make msg "test: main suites (MBEDTLS_USE_PSA_CRYPTO)"