Skip to content

Commit 1ca6f8c

Browse files
committed
test: add T2S to cross-kernel/CPU snapshot tests
Signed-off-by: Takahiro Itazuri <itazur@amazon.com>
1 parent 71d2955 commit 1ca6f8c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/integration_tests/functional/test_snapshot_restore_cross_kernel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def _test_mmds(vm, mmds_net_iface):
121121
@pytest.mark.nonci
122122
@pytest.mark.parametrize(
123123
"cpu_template",
124-
["C3", "T2", "None"] if get_cpu_vendor() == CpuVendor.INTEL else ["None"],
124+
["C3", "T2", "T2S", "None"] if get_cpu_vendor() == CpuVendor.INTEL else ["None"],
125125
)
126126
def test_snap_restore_from_artifacts(
127127
bin_cloner_path, bin_vsock_path, test_fc_session_root_path, cpu_template

tools/create_snapshot_artifact/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ def main():
203203

204204
cpu_templates = ["None"]
205205
if get_cpu_vendor() == CpuVendor.INTEL:
206-
cpu_templates.extend(["C3", "T2"])
206+
cpu_templates.extend(["C3", "T2", "T2S"])
207207

208208
for cpu_template in cpu_templates:
209209
# Create a test context.

0 commit comments

Comments
 (0)