aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLedion Daja <ledion.daja@arm.com>2024-01-11 12:09:20 +0100
committerLedion Daja <ledion.daja@arm.com>2024-01-11 13:40:15 +0100
commitf5f705310326476ff2aeef979842fe7c3565c039 (patch)
treeffb0de5ede8d1775d3014db3724ffea84ad4bb5d
parent4c675f63b03b0a4db2a37e35bebde5464d9c5f79 (diff)
downloadethos-u-core-platform-f5f705310326476ff2aeef979842fe7c3565c039.tar.gz
Add support for version 11.24 of Corstone FVPs in CTest script
Change-Id: Ibc077423156437f8236daa672aefc7eb432c90c4 Signed-off-by: Ledion Daja <ledion.daja@arm.com>
-rwxr-xr-xscripts/run_ctest.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/run_ctest.py b/scripts/run_ctest.py
index b2391c6..19e1243 100755
--- a/scripts/run_ctest.py
+++ b/scripts/run_ctest.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
#
-# SPDX-FileCopyrightText: Copyright 2021-2023 Arm Limited and/or its affiliates <open-source-office@arm.com>
+# SPDX-FileCopyrightText: Copyright 2021-2024 Arm Limited and/or its affiliates <open-source-office@arm.com>
# SPDX-License-Identifier: Apache-2.0
#
# Licensed under the Apache License, Version 2.0 (the License); you may
@@ -72,7 +72,7 @@ def run_corstone_300(args):
# Verify supported FVP version
version = subprocess.check_output([fvp, '--version']).decode()
- supported_version = ['11.16', '11.22']
+ supported_version = ['11.16', '11.22', '11.24']
if not [s for s in supported_version if s in version]:
raise Exception("Incorrect FVP version. Supported versions are '{}'.".format(supported_version))
@@ -116,7 +116,7 @@ def run_corstone_300(args):
def run_corstone_310(args):
# Verify supported FVP version
version = subprocess.check_output(['FVP_Corstone_SSE-310', '--version']).decode()
- supported_version = ['11.17', '11.22']
+ supported_version = ['11.17', '11.22', '11.24']
if not [s for s in supported_version if s in version]:
raise Exception("Incorrect FVP version. Supported versions are '{}'.".format(supported_version))