tests: Update checkpoint tests to new checkpoints (#888)

Change-Id: I1bf6d47017bcf77a4f93341c73de355372e1dea7
This commit is contained in:
Harshil Patel
2024-02-21 16:37:28 -08:00
committed by GitHub
parent c719ea960a
commit 0f79b15b2f
4 changed files with 4 additions and 4 deletions

View File

@@ -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"),
)

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)