Remove OTP configs in Open CI
Specific OTP tests are no more needed in Open CI now
because MUSCA B1 is also using flash backend.
OTP can be covered by common configs.
This patch removes all OTP related configs in Open CI.
Signed-off-by: Xinyu Zhang <xinyu.zhang@arm.com>
Change-Id: I67f9037406796de8037f9e324844bc21ef5340fb
diff --git a/memory_footprint.py b/memory_footprint.py
index 9aab726..9e12d71 100644
--- a/memory_footprint.py
+++ b/memory_footprint.py
@@ -99,43 +99,43 @@
cfg = get_configs_by_name([CI_CONFIG])[CI_CONFIG]
if (not cfg.lib_model and cfg.isolation_level == "1" and
not cfg.test_regression and cfg.test_psa_api == "OFF" and
- cfg.cmake_build_type == "Release" and cfg.with_otp == "off" and
+ cfg.cmake_build_type == "Release" and
cfg.with_bl2 and cfg.with_ns and
cfg.profile == "" and cfg.partition_ps == "ON"):
name_config = "CoreIPC"
elif (cfg.lib_model and cfg.isolation_level == "1" and
not cfg.test_regression and cfg.test_psa_api == "OFF" and
- cfg.cmake_build_type == "Release" and cfg.with_otp == "off" and
+ cfg.cmake_build_type == "Release" and
cfg.with_bl2 and cfg.with_ns and
cfg.profile == "" and cfg.partition_ps == "ON"):
name_config = "Default"
elif (not cfg.lib_model and cfg.isolation_level == "2" and
not cfg.test_regression and cfg.test_psa_api == "OFF" and
- cfg.cmake_build_type == "Release" and cfg.with_otp == "off" and
+ cfg.cmake_build_type == "Release" and
cfg.with_bl2 and cfg.with_ns and
cfg.profile == "" and cfg.partition_ps == "ON"):
name_config = "CoreIPCTfmLevel2"
elif (cfg.lib_model and cfg.isolation_level == "1" and
not cfg.test_regression and cfg.test_psa_api == "OFF" and
- cfg.cmake_build_type == "Release" and cfg.with_otp == "off" and
+ cfg.cmake_build_type == "Release" and
cfg.with_bl2 and cfg.with_ns and
cfg.profile == "profile_small" and cfg.partition_ps == "OFF"):
name_config = "DefaultProfileS"
elif (cfg.lib_model and cfg.isolation_level == "1" and
not cfg.test_regression and cfg.test_psa_api == "OFF" and
- cfg.cmake_build_type == "Minsizerel" and cfg.with_otp == "off" and
+ cfg.cmake_build_type == "Minsizerel" and
cfg.with_bl2 and cfg.with_ns and
cfg.profile == "profile_small" and cfg.partition_ps == "OFF"):
name_config = "MinSizeProfileS"
elif (not cfg.lib_model and cfg.isolation_level == "2" and
not cfg.test_regression and cfg.test_psa_api == "OFF" and
- cfg.cmake_build_type == "Release" and cfg.with_otp == "off" and
+ cfg.cmake_build_type == "Release" and
cfg.with_bl2 and cfg.with_ns and
cfg.profile == "profile_medium" and cfg.partition_ps == "ON"):
name_config = "DefaultProfileM"
elif (not cfg.lib_model and cfg.isolation_level == "3" and
not cfg.test_regression and cfg.test_psa_api == "OFF" and
- cfg.cmake_build_type == "Release" and cfg.with_otp == "off" and
+ cfg.cmake_build_type == "Release" and
cfg.with_bl2 and cfg.with_ns and
cfg.profile == "profile_large" and cfg.partition_ps == "ON"):
name_config = "DefaultProfileL"