diff --git a/tests/gem5/gem5_library_example_tests/test_gem5_library_examples.py b/tests/gem5/gem5_library_example_tests/test_gem5_library_examples.py index 7db46b0770..e43d461b35 100644 --- a/tests/gem5/gem5_library_example_tests/test_gem5_library_examples.py +++ b/tests/gem5/gem5_library_example_tests/test_gem5_library_examples.py @@ -325,56 +325,59 @@ gem5_verify_config( length=constants.very_long_tag, ) -gem5_verify_config( - name="test-gem5-library-create-looppoint-checkpoints", - fixtures=(), - verifiers=(), - config=joinpath( - config.base_dir, - "configs", - "example", - "gem5_library", - "looppoints", - "create-looppoint-checkpoint.py", - ), - config_args=[ - "--checkpoint-path", - joinpath(resource_path, "looppoint-checkpoint-save"), - ], - valid_isas=(constants.all_compiled_tag,), - valid_hosts=constants.supported_hosts, - length=constants.very_long_tag, -) +# The LoopPoint-Checkpointing feature is still under development, therefore +# these tests are temporarily disabled until this feature is complete.# -for region in ( - "1", - "2", - "3", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", -): - gem5_verify_config( - name=f"test-gem5-library-restore-looppoint-checkpoint-region-f{region}", - fixtures=(), - verifiers=(), - config=joinpath( - config.base_dir, - "configs", - "example", - "gem5_library", - "looppoints", - "restore-looppoint-checkpoint.py", - ), - config_args=["--checkpoint-region", region], - valid_isas=(constants.all_compiled_tag,), - valid_hosts=constants.supported_hosts, - length=constants.very_long_tag, - ) +# gem5_verify_config( +# name="test-gem5-library-create-looppoint-checkpoints", +# fixtures=(), +# verifiers=(), +# config=joinpath( +# config.base_dir, +# "configs", +# "example", +# "gem5_library", +# "looppoints", +# "create-looppoint-checkpoint.py", +# ), +# config_args=[ +# "--checkpoint-path", +# joinpath(resource_path, "looppoint-checkpoint-save"), +# ], +# valid_isas=(constants.all_compiled_tag,), +# valid_hosts=constants.supported_hosts, +# length=constants.very_long_tag, +# ) + +# for region in ( +# "1", +# "2", +# "3", +# "5", +# "6", +# "7", +# "8", +# "9", +# "10", +# "11", +# "12", +# "13", +# "14", +# ): +# gem5_verify_config( +# name=f"test-gem5-library-restore-looppoint-checkpoint-region-f{region}", +# fixtures=(), +# verifiers=(), +# config=joinpath( +# config.base_dir, +# "configs", +# "example", +# "gem5_library", +# "looppoints", +# "restore-looppoint-checkpoint.py", +# ), +# config_args=["--checkpoint-region", region], +# valid_isas=(constants.all_compiled_tag,), +# valid_hosts=constants.supported_hosts, +# length=constants.very_long_tag, +# )