From 01ff91991bb446ae6c8b43b487b32c54f436273a Mon Sep 17 00:00:00 2001 From: "Bobby R. Bruce" Date: Wed, 8 Sep 2021 13:24:10 -0700 Subject: [PATCH] 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 Reviewed-by: Jason Lowe-Power Maintainer: Bobby R. Bruce Tested-by: kokoro --- tests/gem5/x86-boot-tests/test_linux_boot.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/gem5/x86-boot-tests/test_linux_boot.py b/tests/gem5/x86-boot-tests/test_linux_boot.py index b3e3064b0f..53af891c11 100644 --- a/tests/gem5/x86-boot-tests/test_linux_boot.py +++ b/tests/gem5/x86-boot-tests/test_linux_boot.py @@ -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