aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLedion Daja <ledion.daja@arm.com>2023-10-31 09:26:59 +0100
committerLedion Daja <ledion.daja@arm.com>2023-10-31 10:48:31 +0100
commit28005363f90cc146166e60d0130815109a24db05 (patch)
tree12d374ba8e6acc0310b1c3619ec5c503273a2ff4
parentc078cedb6229e7aca6e9dc7e3cda1302eb3951f4 (diff)
downloadethos-u-core-platform-28005363f90cc146166e60d0130815109a24db05.tar.gz
Add support for Corstone-310 FVP version 11.22 in CTest script
Change-Id: Ie765aaa9a14d990961c22e8c6bdf33d89339a64c Signed-off-by: Ledion Daja <ledion.daja@arm.com>
-rwxr-xr-xscripts/run_ctest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/run_ctest.py b/scripts/run_ctest.py
index 1449348..b2391c6 100755
--- a/scripts/run_ctest.py
+++ b/scripts/run_ctest.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
#
-# SPDX-FileCopyrightText: Copyright (c) 2021-2023 Arm Limited and/or its affiliates <open-source-office@arm.com>
+# SPDX-FileCopyrightText: Copyright 2021-2023 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
@@ -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']
+ supported_version = ['11.17', '11.22']
if not [s for s in supported_version if s in version]:
raise Exception("Incorrect FVP version. Supported versions are '{}'.".format(supported_version))