stdlib, resources: Addressed requested changes

Change-Id: I22abdc3bdcdde52301ed10cb3113e8925159c245
Co-authored-by: Kunal Pai <kunpai@users.noreply.github.com>
This commit is contained in:
Harshil Patel
2023-10-02 23:27:32 -07:00
parent 8182f8084b
commit 3af3c1121b
4 changed files with 21 additions and 11 deletions

View File

@@ -334,6 +334,23 @@ gem5_verify_config(
length=constants.very_long_tag,
)
gem5_verify_config(
name="test-gem5-library-example-riscvmatched-microbenchmark-suite",
fixtures=(),
verifiers=(),
config=joinpath(
config.base_dir,
"configs",
"example",
"gem5_library",
"riscvmatched-microbenchmark-suite.py",
),
config_args=[],
valid_isas=(constants.all_compiled_tag,),
valid_hosts=constants.supported_hosts,
length=constants.long_tag,
)
# The LoopPoint-Checkpointing feature is still under development, therefore
# these tests are temporarily disabled until this feature is complete.#

View File

@@ -59,7 +59,7 @@ class CustomSuiteResourceTestSuite(unittest.TestCase):
cls.workload1 = obtain_resource("simple-workload-1")
cls.workload2 = obtain_resource("simple-workload-2")
cls.SuiteResource = SuiteResource(
workload_obj_list={cls.workload1: set(), cls.workload2: set()}
workloads={cls.workload1: set(), cls.workload2: set()}
)
@patch(