From fdd8b41d12a8fd729619dee12080e65ec151865c Mon Sep 17 00:00:00 2001 From: polved01 Date: Mon, 25 Sep 2023 13:29:26 +0000 Subject: Update supported FVP versions in CTest script Add support for Corstone-300 FVP version 11.22 and remove support for version 11.15 and older Signed-off-by: Polina Vedeneva Change-Id: Icebb70b9f6281116e3d5d3f4092d336951dcb53a --- scripts/run_ctest.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/scripts/run_ctest.py b/scripts/run_ctest.py index c2ba672..1449348 100755 --- a/scripts/run_ctest.py +++ b/scripts/run_ctest.py @@ -1,8 +1,7 @@ #!/usr/bin/env python3 # -# Copyright (c) 2021-2022 Arm Limited. All rights reserved. -# +# SPDX-FileCopyrightText: Copyright (c) 2021-2023 Arm Limited and/or its affiliates # SPDX-License-Identifier: Apache-2.0 # # Licensed under the Apache License, Version 2.0 (the License); you may @@ -73,7 +72,7 @@ def run_corstone_300(args): # Verify supported FVP version version = subprocess.check_output([fvp, '--version']).decode() - supported_version = ['11.13', '11.14', '11.15', '11.16'] + supported_version = ['11.16', '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)) -- cgit v1.2.1