From c52f2fb26addcbc1a5cdaced1121973f7732272e Mon Sep 17 00:00:00 2001 From: Giacomo Travaglini Date: Mon, 18 Jan 2021 09:50:00 +0000 Subject: [PATCH] tests: Fix syntax error in cpu_tests/test.py The testsuite was not loaded with the following error: Exception thrown while loading /tests/gem5/cpu_tests/test.py Signed-off-by: Giacomo Travaglini Change-Id: I1e88b8957bb24471e1bb6113ffc7c78886b6ed70 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/39295 Reviewed-by: Hoa Nguyen Maintainer: Jason Lowe-Power Tested-by: kokoro --- tests/gem5/cpu_tests/test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/gem5/cpu_tests/test.py b/tests/gem5/cpu_tests/test.py index 393ff266f..ee5640091 100644 --- a/tests/gem5/cpu_tests/test.py +++ b/tests/gem5/cpu_tests/test.py @@ -60,9 +60,9 @@ base_path = joinpath(config.bin_path, 'cpu_tests') base_url = config.resource_url + '/gem5/cpu_tests/benchmarks/bin/' isa_url = { - constants.gcn3_x86_tag : base_url + "x86" - constants.arm_tag : base_url + "arm" - constants.riscv_tag : base_url + "riscv" + constants.gcn3_x86_tag : base_url + "x86", + constants.arm_tag : base_url + "arm", + constants.riscv_tag : base_url + "riscv", } for isa in valid_isas: -- 2.30.2