CppCheck: Remove psa_arch_tests related info
PSA_ARCH_TESTS is not needed in cppcheck.
Remove related info.
Signed-off-by: Xinyu Zhang <xinyu.zhang@arm.com>
Change-Id: I8bec513564518c89fae9a5a69f412c20da19ff9f
diff --git a/run-cppcheck.sh b/run-cppcheck.sh
index 8ac060f..9ed3521 100755
--- a/run-cppcheck.sh
+++ b/run-cppcheck.sh
@@ -75,13 +75,11 @@
toolchain_file="$(fix_win_path $(get_full_path ./))/toolchain_GNUARM.cmake"
test_repo="$(fix_win_path $(get_full_path ./))/../tf-m-tests"
mbedtls_repo="$(fix_win_path $(get_full_path ./))/../mbedtls"
-psa_arch_tests_repo="$(fix_win_path $(get_full_path ./))/../psa-arch-tests"
mcuboot_repo="$(fix_win_path $(get_full_path ./))/../mcuboot"
#Cmake compile params
cmake_params="-DCMAKE_EXPORT_COMPILE_COMMANDS=1 -DTFM_PLATFORM=arm/mps2/an521 -DTFM_TOOLCHAIN_FILE=$toolchain_file"
-cmake_params="$cmake_params -DTFM_TEST_REPO_PATH=$test_repo -DMBEDCRYPTO_PATH=$mbedtls_repo"
-cmake_params="$cmake_params -DPSA_ARCH_TESTS_PATH=$psa_arch_tests_repo -DMCUBOOT_PATH=$mcuboot_repo"
+cmake_params="$cmake_params -DTFM_TEST_REPO_PATH=$test_repo -DMBEDCRYPTO_PATH=$mbedtls_repo -DMCUBOOT_PATH=$mcuboot_repo"
#Enable all additional checks by default
additional_checklist="all"