1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-29 11:41:15 +03:00

Scripts improvements

Signed-off-by: Ronald Cron <ronald.cron@arm.com>
This commit is contained in:
Ronald Cron
2024-07-19 16:51:33 +02:00
parent b6f6cc89d0
commit 3f8275e93a
2 changed files with 4 additions and 5 deletions

View File

@ -136,8 +136,7 @@ option"""
mbedtls_root = build_tree.guess_mbedtls_root()
directories = [os.path.join(mbedtls_root, 'tests'),
os.path.join(mbedtls_root, 'tf-psa-crypto', 'tests')]
for index, value in enumerate(directories):
directories[index] = os.path.relpath(value)
directories = [os.path.relpath(p) for p in directories]
return directories
def walk_all(self):