From 37a33ab5cc36679d2e00f4f0fab386cb256aa031 Mon Sep 17 00:00:00 2001 From: Yi Wu Date: Tue, 5 May 2026 15:11:25 +0100 Subject: [PATCH] test: dependency macros order fix Signed-off-by: Yi Wu --- tests/scripts/components-basic-checks.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/scripts/components-basic-checks.sh b/tests/scripts/components-basic-checks.sh index 2eb774ab44..35d4d37fe5 100644 --- a/tests/scripts/components-basic-checks.sh +++ b/tests/scripts/components-basic-checks.sh @@ -138,9 +138,9 @@ component_check_test_dependencies () { # to hide the fact that ECDSA and RSA could be randomized or deterministic. echo "PSA_HAVE_ALG_ECDSA_SIGN" >> $expected echo "PSA_HAVE_ALG_ECDSA_VERIFY" >> $expected - echo "PSA_HAVE_ALG_SOME_ECDSA" >> $expected echo "PSA_HAVE_ALG_RSA_PKCS1V15_SIGN" >> $expected echo "PSA_HAVE_ALG_RSA_PKCS1V15_VERIFY" >> $expected + echo "PSA_HAVE_ALG_SOME_ECDSA" >> $expected echo "PSA_HAVE_ALG_SOME_RSA_SIGN" >> $expected echo "PSA_HAVE_ALG_SOME_RSA_VERIFY" >> $expected echo "PSA_WANT_ALG_ECDSA_ANY" >> $expected