@@ -272,7 +272,7 @@ def msr_cpu_template_fxt(request):
272272@pytest .mark .timeout (900 ) 
273273@pytest .mark .nonci  
274274def  test_cpu_rdmsr (
275-     microvm_factory , msr_cpu_template , guest_kernel , rootfs_ubuntu_22 , results_dir 
275+     microvm_factory , msr_cpu_template , guest_kernel , rootfs_ubuntu_24 , results_dir 
276276):
277277    """ 
278278    Test MSRs that are available to the guest. 
@@ -307,7 +307,7 @@ def test_cpu_rdmsr(
307307    """ 
308308
309309    vcpus , guest_mem_mib  =  1 , 1024 
310-     vm  =  microvm_factory .build (guest_kernel , rootfs_ubuntu_22 , monitor_memory = False )
310+     vm  =  microvm_factory .build (guest_kernel , rootfs_ubuntu_24 , monitor_memory = False )
311311    vm .spawn ()
312312    vm .add_net_iface ()
313313    vm .basic_config (
@@ -377,7 +377,7 @@ def dump_msr_state_to_file(dump_fname, ssh_conn, shared_names):
377377@pytest .mark .timeout (900 ) 
378378@pytest .mark .nonci  
379379def  test_cpu_wrmsr_snapshot (
380-     microvm_factory , guest_kernel , rootfs_ubuntu_22 , msr_cpu_template 
380+     microvm_factory , guest_kernel , rootfs_ubuntu_24 , msr_cpu_template 
381381):
382382    """ 
383383    This is the first part of the test verifying 
@@ -398,7 +398,7 @@ def test_cpu_wrmsr_snapshot(
398398    shared_names  =  SNAPSHOT_RESTORE_SHARED_NAMES 
399399
400400    vcpus , guest_mem_mib  =  1 , 1024 
401-     vm  =  microvm_factory .build (guest_kernel , rootfs_ubuntu_22 , monitor_memory = False )
401+     vm  =  microvm_factory .build (guest_kernel , rootfs_ubuntu_24 , monitor_memory = False )
402402    vm .spawn ()
403403    vm .add_net_iface ()
404404    vm .basic_config (
@@ -534,7 +534,7 @@ def dump_cpuid_to_file(dump_fname, ssh_conn):
534534@pytest .mark .timeout (900 ) 
535535@pytest .mark .nonci  
536536def  test_cpu_cpuid_snapshot (
537-     microvm_factory , guest_kernel , rootfs_ubuntu_22 , msr_cpu_template 
537+     microvm_factory , guest_kernel , rootfs_ubuntu_24 , msr_cpu_template 
538538):
539539    """ 
540540    This is the first part of the test verifying 
@@ -551,7 +551,7 @@ def test_cpu_cpuid_snapshot(
551551
552552    vm  =  microvm_factory .build (
553553        kernel = guest_kernel ,
554-         rootfs = rootfs_ubuntu_22 ,
554+         rootfs = rootfs_ubuntu_24 ,
555555    )
556556    vm .spawn ()
557557    vm .add_net_iface ()
@@ -927,9 +927,9 @@ def check_enabled_features(test_microvm, cpu_template):
927927        "enhanced REP MOVSB/STOSB" : "true" ,
928928        "SMAP: supervisor mode access prevention" : "true" ,
929929        # xsave_0xd_0 
930-         "XCR0 supported:  x87 state" : "true" ,
931-         "XCR0 supported:  SSE state" : "true" ,
932-         "XCR0 supported:  AVX state" : "true" ,
930+         "x87 state" : "true" ,
931+         "SSE state" : "true" ,
932+         "AVX state" : "true" ,
933933        # xsave_0xd_1 
934934        "XSAVEOPT instruction" : "true" ,
935935        # extended_080000001_edx 
0 commit comments