stdlib: Add X86DemoBoard

Change-Id: I5aae95d2d8fe37374c393b337243526eb1c90aa1
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/53004
Reviewed-by: Bobby Bruce <bbruce@ucdavis.edu>
Maintainer: Bobby Bruce <bbruce@ucdavis.edu>
Tested-by: kokoro <noreply+kokoro@google.com>
This commit is contained in:
Bobby R. Bruce
2021-11-19 12:01:04 -08:00
committed by Bobby Bruce
parent 331be22adb
commit b1f3ca4647
7 changed files with 276 additions and 95 deletions

View File

@@ -56,7 +56,7 @@ if os.access("/dev/kvm", mode=os.R_OK | os.W_OK):
# The x86-ubuntu-run uses KVM cores, this test will therefore only be run
# on systems that support KVM.
gem5_verify_config(
name="test-gem5-library-example-x86-ubuntu-run",
name="test-gem5-library-example-x86-ubuntu-run-with-kvm",
fixtures=(),
verifiers=(),
config=joinpath(
@@ -64,10 +64,27 @@ if os.access("/dev/kvm", mode=os.R_OK | os.W_OK):
"configs",
"example",
"gem5_library",
"x86-ubuntu-run.py",
"x86-ubuntu-run-with-kvm.py",
),
config_args=[],
valid_isas=(constants.x86_tag,),
valid_hosts=constants.supported_hosts,
length=constants.long_tag,
)
gem5_verify_config(
name="test-gem5-library-example-x86-ubuntu-run",
fixtures=(),
verifiers=(),
config=joinpath(
config.base_dir,
"configs",
"example",
"gem5_library",
"x86-ubuntu-run.py",
),
config_args=[],
valid_isas=(constants.x86_tag,),
valid_hosts=constants.supported_hosts,
length=constants.long_tag,
)