tests: Fix x86-boot-tests nightly tests

The nightly tests were failing as reported here:
https://www.mail-archive.com/gem5-dev@gem5.org/msg40394.html.

This was due to the tests trying to run our MI_Example test against
GCN3_X86 instead of the X86 ISA target. This patch fixes the issue.

Change-Id: I8ea692ffc06e3d7c4150074ed22e16096b3dbb5e
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/50128
Reviewed-by: Bobby R. Bruce <bbruce@ucdavis.edu>
Reviewed-by: Jason Lowe-Power <power.jg@gmail.com>
Maintainer: Bobby R. Bruce <bbruce@ucdavis.edu>
Tested-by: kokoro <noreply+kokoro@google.com>
This commit is contained in:
Bobby R. Bruce
2021-09-08 13:24:10 -07:00
parent abf6b8b7b6
commit 01ff91991b

View File

@@ -64,6 +64,9 @@ def test_boot(
if mem_system == "mesi_two_level":
protocol_to_use="MESI_Two_Level"
isa_to_use=constants.x86_tag
elif mem_system == "mi_example":
protocol_to_use=None
isa_to_use=constants.x86_tag
else:
protocol_to_use=None
isa_to_use=constants.gcn3_x86_tag