From 619e09e70534e7a95ad16c7dccf9c480fdcae1f6 Mon Sep 17 00:00:00 2001 From: John Durkop Date: Tue, 8 Sep 2020 22:19:56 -0700 Subject: [PATCH] Minor update to all.sh to change test order Moved the new component_test_depends_pkalgs_psa to after the component_test_depends_pkalgs test to be more consistent. Signed-off-by: John Durkop --- tests/scripts/all.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/scripts/all.sh b/tests/scripts/all.sh index 15d8a1dec..bd5d5a18e 100755 --- a/tests/scripts/all.sh +++ b/tests/scripts/all.sh @@ -1196,14 +1196,14 @@ component_test_depends_hashes_psa () { record_status tests/scripts/depends-hashes.pl } -component_test_depends_pkalgs_psa () { - msg "test/build: depends-pkalgs.pl with MBEDTLS_USE_PSA_CRYPTO defined (gcc)" - scripts/config.py set MBEDTLS_USE_PSA_CRYPTO +component_test_depends_pkalgs () { + msg "test/build: depends-pkalgs.pl (gcc)" # ~ 2 min record_status tests/scripts/depends-pkalgs.pl } -component_test_depends_pkalgs () { - msg "test/build: depends-pkalgs.pl (gcc)" # ~ 2 min +component_test_depends_pkalgs_psa () { + msg "test/build: depends-pkalgs.pl with MBEDTLS_USE_PSA_CRYPTO defined (gcc)" + scripts/config.py set MBEDTLS_USE_PSA_CRYPTO record_status tests/scripts/depends-pkalgs.pl }