From d0c3076dba98d48dc5ab866f197923ad75615d45 Mon Sep 17 00:00:00 2001 From: Thomas Daubney Date: Thu, 23 Nov 2023 09:59:57 +0000 Subject: [PATCH] Make use of crypto_core_directory function in script Signed-off-by: Thomas Daubney --- tests/scripts/test_psa_compliance.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/scripts/test_psa_compliance.py b/tests/scripts/test_psa_compliance.py index bed6d849e..2482d032a 100755 --- a/tests/scripts/test_psa_compliance.py +++ b/tests/scripts/test_psa_compliance.py @@ -52,10 +52,10 @@ def main(library_build_dir: str): if in_tf_psa_crypto_repo: crypto_name = 'tfpsacrypto' - library_subdir = 'core' else: crypto_name = 'mbedcrypto' - library_subdir = 'library' + + library_subdir = build_tree.crypto_core_directory() crypto_lib_filename = (library_build_dir + '/' + library_subdir + '/' +