From 0f79b15b2faa01f70c1db7279c66823688932d26 Mon Sep 17 00:00:00 2001 From: Harshil Patel Date: Wed, 21 Feb 2024 16:37:28 -0800 Subject: [PATCH] tests: Update checkpoint tests to new checkpoints (#888) Change-Id: I1bf6d47017bcf77a4f93341c73de355372e1dea7 --- .../example/gem5_library/checkpoints/simpoints-se-restore.py | 2 +- .../checkpoint_tests/configs/power-hello-restore-checkpoint.py | 2 +- .../gem5/checkpoint_tests/configs/x86-fs-restore-checkpoint.py | 2 +- .../checkpoint_tests/configs/x86-hello-restore-checkpoint.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/configs/example/gem5_library/checkpoints/simpoints-se-restore.py b/configs/example/gem5_library/checkpoints/simpoints-se-restore.py index 284289be6f..a3639a63bb 100644 --- a/configs/example/gem5_library/checkpoints/simpoints-se-restore.py +++ b/configs/example/gem5_library/checkpoints/simpoints-se-restore.py @@ -125,7 +125,7 @@ board.set_se_simpoint_workload( weight_list=[0.1, 0.2, 0.4, 0.3], warmup_interval=1000000, ), - checkpoint=obtain_resource("simpoints-se-checkpoints-v23-0-v1"), + checkpoint=obtain_resource("simpoints-se-checkpoints-v24-0"), ) diff --git a/tests/gem5/checkpoint_tests/configs/power-hello-restore-checkpoint.py b/tests/gem5/checkpoint_tests/configs/power-hello-restore-checkpoint.py index bd717f3c62..2da1a4bcf5 100644 --- a/tests/gem5/checkpoint_tests/configs/power-hello-restore-checkpoint.py +++ b/tests/gem5/checkpoint_tests/configs/power-hello-restore-checkpoint.py @@ -62,7 +62,7 @@ board = SimpleBoard( ) board.set_se_binary_workload( obtain_resource("power-hello"), - checkpoint=obtain_resource("power-hello-test-checkpoint"), + checkpoint=obtain_resource("power-hello-test-checkpoint-v24-0"), ) sim = Simulator(board=board, full_system=False) diff --git a/tests/gem5/checkpoint_tests/configs/x86-fs-restore-checkpoint.py b/tests/gem5/checkpoint_tests/configs/x86-fs-restore-checkpoint.py index f2909b36f6..6286fc0544 100644 --- a/tests/gem5/checkpoint_tests/configs/x86-fs-restore-checkpoint.py +++ b/tests/gem5/checkpoint_tests/configs/x86-fs-restore-checkpoint.py @@ -76,7 +76,7 @@ board = X86Board( board.set_kernel_disk_workload( kernel=obtain_resource("x86-linux-kernel-5.4.49"), disk_image=obtain_resource("x86-ubuntu-18.04-img"), - checkpoint=obtain_resource("x86-fs-test-checkpoint"), + checkpoint=obtain_resource("x86-fs-test-checkpoint-v24-0"), ) sim = Simulator(board=board, full_system=True) diff --git a/tests/gem5/checkpoint_tests/configs/x86-hello-restore-checkpoint.py b/tests/gem5/checkpoint_tests/configs/x86-hello-restore-checkpoint.py index 5a36a01e35..5bdeb4df50 100644 --- a/tests/gem5/checkpoint_tests/configs/x86-hello-restore-checkpoint.py +++ b/tests/gem5/checkpoint_tests/configs/x86-hello-restore-checkpoint.py @@ -62,7 +62,7 @@ board = SimpleBoard( ) board.set_se_binary_workload( obtain_resource("x86-hello64-static"), - checkpoint=obtain_resource("x86-hello-test-checkpoint"), + checkpoint=obtain_resource("x86-hello-test-checkpoint-v24-0"), ) sim = Simulator(board=board, full_system=False)