@@ -560,7 +560,7 @@ def msr_cpu_template_fxt(request):
560560@pytest .mark .timeout (900 )
561561@pytest .mark .nonci
562562def test_cpu_rdmsr (
563- microvm_factory , msr_cpu_template , guest_kernel , rootfs_ubuntu_22 , results_dir
563+ microvm_factory , msr_cpu_template , guest_kernel , rootfs_ubuntu_24 , results_dir
564564):
565565 """
566566 Test MSRs that are available to the guest.
@@ -595,7 +595,7 @@ def test_cpu_rdmsr(
595595 """
596596
597597 vcpus , guest_mem_mib = 1 , 1024
598- vm = microvm_factory .build (guest_kernel , rootfs_ubuntu_22 , monitor_memory = False )
598+ vm = microvm_factory .build (guest_kernel , rootfs_ubuntu_24 , monitor_memory = False )
599599 vm .spawn ()
600600 vm .add_net_iface ()
601601 vm .basic_config (
@@ -665,7 +665,7 @@ def dump_msr_state_to_file(dump_fname, ssh_conn, shared_names):
665665@pytest .mark .timeout (900 )
666666@pytest .mark .nonci
667667def test_cpu_wrmsr_snapshot (
668- microvm_factory , guest_kernel , rootfs_ubuntu_22 , msr_cpu_template
668+ microvm_factory , guest_kernel , rootfs_ubuntu_24 , msr_cpu_template
669669):
670670 """
671671 This is the first part of the test verifying
@@ -686,7 +686,7 @@ def test_cpu_wrmsr_snapshot(
686686 shared_names = SNAPSHOT_RESTORE_SHARED_NAMES
687687
688688 vcpus , guest_mem_mib = 1 , 1024
689- vm = microvm_factory .build (guest_kernel , rootfs_ubuntu_22 , monitor_memory = False )
689+ vm = microvm_factory .build (guest_kernel , rootfs_ubuntu_24 , monitor_memory = False )
690690 vm .spawn ()
691691 vm .add_net_iface ()
692692 vm .basic_config (
@@ -822,7 +822,7 @@ def dump_cpuid_to_file(dump_fname, ssh_conn):
822822@pytest .mark .timeout (900 )
823823@pytest .mark .nonci
824824def test_cpu_cpuid_snapshot (
825- microvm_factory , guest_kernel , rootfs_ubuntu_22 , msr_cpu_template
825+ microvm_factory , guest_kernel , rootfs_ubuntu_24 , msr_cpu_template
826826):
827827 """
828828 This is the first part of the test verifying
@@ -839,7 +839,7 @@ def test_cpu_cpuid_snapshot(
839839
840840 vm = microvm_factory .build (
841841 kernel = guest_kernel ,
842- rootfs = rootfs_ubuntu_22 ,
842+ rootfs = rootfs_ubuntu_24 ,
843843 )
844844 vm .spawn ()
845845 vm .add_net_iface ()
@@ -1215,9 +1215,9 @@ def check_enabled_features(test_microvm, cpu_template):
12151215 "enhanced REP MOVSB/STOSB" : "true" ,
12161216 "SMAP: supervisor mode access prevention" : "true" ,
12171217 # xsave_0xd_0
1218- "XCR0 supported: x87 state" : "true" ,
1219- "XCR0 supported: SSE state" : "true" ,
1220- "XCR0 supported: AVX state" : "true" ,
1218+ "x87 state" : "true" ,
1219+ "SSE state" : "true" ,
1220+ "AVX state" : "true" ,
12211221 # xsave_0xd_1
12221222 "XSAVEOPT instruction" : "true" ,
12231223 # extended_080000001_edx
0 commit comments