From: Giacomo Travaglini Date: Mon, 18 Jan 2021 09:50:00 +0000 (+0000) Subject: tests: Fix syntax error in cpu_tests/test.py X-Git-Tag: develop-gem5-snapshot~272 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c52f2fb26addcbc1a5cdaced1121973f7732272e;p=gem5.git 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 --- 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: