From 41c316d3b235b957dae0684ac7b60c421fac0a7b Mon Sep 17 00:00:00 2001 From: David Horstmann Date: Tue, 29 Aug 2023 14:57:23 +0100 Subject: [PATCH] Move -B switch into a single argument This will prevent CMake from mistaking the build directory for the source directory Signed-off-by: David Horstmann --- tests/scripts/test_psa_compliance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/scripts/test_psa_compliance.py b/tests/scripts/test_psa_compliance.py index 5df479df6a..4008a5cd95 100755 --- a/tests/scripts/test_psa_compliance.py +++ b/tests/scripts/test_psa_compliance.py @@ -77,7 +77,7 @@ def main(library_build_dir: str): subprocess.check_call([ 'cmake', '.', '-GUnix Makefiles', - '-B', library_build_dir + '-B' + library_build_dir ]) subprocess.check_call(['cmake', '--build', library_build_dir, '-t', crypto_name])