aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorKristofer Jonsson <kristofer.jonsson@arm.com>2022-08-03 15:51:08 +0200
committerKristofer Jonsson <kristofer.jonsson@arm.com>2022-08-03 15:51:08 +0200
commitde1a9f6e9bdd2243c4158789834ef21ee94fc31c (patch)
tree683d435303dacc8d8e0cf979f863368952d0594e /scripts
parent1142d9c7bb4e6da03a02f45f40c7aab702148776 (diff)
downloadethos-u-core-platform-de1a9f6e9bdd2243c4158789834ef21ee94fc31c.tar.gz
Corstone-310 FVP update
Updating scripts to support next release of Corstone-310 FVP. Change-Id: Idb13d8caa9954524d11aa0aa14c812e3c4d6b89d
Diffstat (limited to 'scripts')
-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 c2ba672..aa6292f 100755
--- a/scripts/run_ctest.py
+++ b/scripts/run_ctest.py
@@ -116,14 +116,14 @@ 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']
+ version = subprocess.check_output(['FVP_Corstone_SSE-310_Ethos-U65', '--version']).decode()
+ supported_version = ['11.18']
if not [s for s in supported_version if s in version]:
raise Exception("Incorrect FVP version. Supported versions are '{}'.".format(supported_version))
# FVP executable
- cmd = ['FVP_Corstone_SSE-310']
+ cmd = ['FVP_Corstone_SSE-310_Ethos-U65']
# NPU configuration
cmd += ['-C', 'ethosu.num_macs=' + str(args.macs)]