aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorliodek01 <lior.dekel@arm.com>2021-08-10 17:40:24 +0300
committerliodek01 <lior.dekel@arm.com>2021-08-10 17:40:24 +0300
commite5fcbd33e318c822478196c6cca4a6f5ebbdcc0f (patch)
tree6e8574c0b8430d810e845eb4d79782fe72e94528
parent99f1942c3edd0c3c4bcfd4017b92ccc579de5d17 (diff)
downloadethos-u-core-platform-e5fcbd33e318c822478196c6cca4a6f5ebbdcc0f.tar.gz
Adding FM 11.15 support to run_ctest script
Jira: NO-JIRA Change-Id: I5c31bc432d421ae7645474a24b0ce7a4be7cefb8
-rwxr-xr-xscripts/run_ctest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/run_ctest.py b/scripts/run_ctest.py
index 10d389c..cd5d4b3 100755
--- a/scripts/run_ctest.py
+++ b/scripts/run_ctest.py
@@ -47,7 +47,7 @@ def check_output(args, **kwargs):
def run_corstone_300(args):
# Verify supported FVP version
version = subprocess.check_output(['FVP_Corstone_SSE-300_Ethos-U55', '--version']).decode()
- supported_version = ['11.13', '11.14']
+ supported_version = ['11.13', '11.14', '11.15']
if not [s for s in supported_version if s in version]:
raise Exception("Incorrect FVP version. Supported versions are '{}'.".format(supported_version))