From faea919365d0bcf7c3dbaf9f7159ba582962edaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Thu, 28 Sep 2023 09:10:01 +0200 Subject: [PATCH] Fix typo: weiErstrass MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Manuel Pégourié-Gonnard --- tests/scripts/all.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/scripts/all.sh b/tests/scripts/all.sh index b03b07645..1d66f3ed4 100755 --- a/tests/scripts/all.sh +++ b/tests/scripts/all.sh @@ -2586,8 +2586,8 @@ component_test_psa_crypto_config_accel_ecc_some_key_types () { # Run tests with only (non-)Weierstrass accelerated # Common code used in: -# - component_test_psa_crypto_config_accel_ecc_weirstrass_curves -# - component_test_psa_crypto_config_accel_ecc_non_weirstrass_curves +# - component_test_psa_crypto_config_accel_ecc_weierstrass_curves +# - component_test_psa_crypto_config_accel_ecc_non_weierstrass_curves common_test_psa_crypto_config_accel_ecc_some_curves () { weierstrass=$1 if [ $weierstrass -eq 1 ]; then @@ -2692,11 +2692,11 @@ common_test_psa_crypto_config_accel_ecc_some_curves () { make test SKIP_TEST_SUITES=pk,pkparse,pkwrite,x509parse,x509write,ssl,debug } -component_test_psa_crypto_config_accel_ecc_weirstrass_curves () { +component_test_psa_crypto_config_accel_ecc_weierstrass_curves () { common_test_psa_crypto_config_accel_ecc_some_curves 1 } -component_test_psa_crypto_config_accel_ecc_non_weirstrass_curves () { +component_test_psa_crypto_config_accel_ecc_non_weierstrass_curves () { common_test_psa_crypto_config_accel_ecc_some_curves 0 }