Skip to content

Commit 9593771

Browse files
committed
sq
Signed-off-by: Egor Lazarchuk <[email protected]>
1 parent aa4b4c4 commit 9593771

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/integration_tests/functional/test_cpu_features.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -220,16 +220,16 @@ def test_host_vs_guest_cpu_features_x86_64(uvm_nano):
220220
cpu_model = cpuid_utils.get_cpu_codename()
221221
match cpu_model:
222222
case CpuModel.AMD_MILAN:
223-
assert host_feats - guest_feats == set()
223+
assert host_feats - guest_feats == {'cqm_mbm_local', 'rapl', 'cqm_llc', 'cat_l3', 'bpext', 'cqm_mbm_total', 'perfctr_nb', 'wdt', 'hw_pstate', 'extapic', 'extd_apicid', 'amd_ppin', 'flushbyasid', 'succor', 'smca', 'overflow_recov', 'v_spec_ctrl', 'decodeassists', 'cqm_occup_llc', 'sev_es', 'sev', 'monitor', 'svm_lock', 'rdt_a', 'ibs', 'cdp_l3', 'rdpru', 'brs', 'tce', 'perfctr_llc', 'irperf', 'mwaitx', 'mba', 'cpb', 'skinit', 'aperfmperf', 'cqm'}
224224
assert guest_feats - host_feats == set()
225225
case CpuModel.INTEL_SKYLAKE:
226-
assert host_feats - guest_feats == set()
226+
assert host_feats - guest_feats == {'monitor', 'cqm_occup_llc', 'rdt_a', 'ept_ad', 'arch_perfmon', 'cqm', 'intel_pt', 'sdbg', 'est', 'dts', 'cdp_l3', 'dca', 'pts', 'hwp_act_window', 'smx', 'xtpr', 'cqm_mbm_local', 'epb', 'hwp_pkg_req', 'pbe', 'tpr_shadow', 'tm2', 'mba', 'vnmi', 'ds_cpl', 'tm', 'cat_l3', 'bts', 'pln', 'vmx', 'flexpriority', 'vpid', 'cqm_llc', 'hwp_epp', 'dtherm', 'flush_l1d', 'intel_ppin', 'art', 'pdcm', 'acpi', 'hwp', 'aperfmperf', 'ida', 'cqm_mbm_total', 'ept', 'pebs', 'dtes64'}
227227
assert guest_feats - host_feats == set()
228228
case CpuModel.INTEL_CASCADELAKE:
229-
assert host_feats - guest_feats == set()
229+
assert host_feats - guest_feats == {'cqm_occup_llc', 'ept_ad', 'tm2', 'cqm', 'xtpr', 'cqm_mbm_local', 'rdt_a', 'aperfmperf', 'ida', 'intel_ppin', 'dts', 'pebs', 'pln', 'epb', 'flexpriority', 'tm', 'cqm_llc', 'intel_pt', 'vpid', 'cqm_mbm_total', 'ds_cpl', 'art', 'vmx', 'ept', 'dtes64', 'hwp_act_window', 'cat_l3', 'est', 'pts', 'monitor', 'sdbg', 'pdcm', 'smx', 'acpi', 'hwp_epp', 'vnmi', 'mba', 'cdp_l3', 'dca', 'flush_l1d', 'bts', 'arch_perfmon', 'tpr_shadow', 'dtherm', 'hwp_pkg_req', 'pbe', 'hwp'}
230230
assert guest_feats - host_feats == set()
231231
case CpuModel.INTEL_ICELAKE:
232-
assert host_feats - guest_feats == set()
232+
assert host_feats - guest_feats == {'art', 'dts', 'monitor', 'pebs', 'bts', 'flexpriority', 'cqm_occup_llc', 'ds_cpl', 'tme', 'hwp', 'rdt_a', 'sdbg', 'pbe', 'hwp_epp', 'epb', 'smx', 'pts', 'xtpr', 'vnmi', 'aperfmperf', 'vpid', 'hwp_pkg_req', 'dca', 'vmx', 'pconfig', 'cat_l3', 'cqm_llc', 'intel_pt', 'cqm_mbm_local', 'ept', 'ida', 'acpi', 'tm2', 'tpr_shadow', 'est', 'ept_ad', 'cqm_mbm_total', 'intel_ppin', 'cqm', 'arch_perfmon', 'flush_l1d', 'mba', 'pln', 'split_lock_detect', 'tm', 'pdcm', 'hwp_act_window', 'dtes64', 'dtherm'}
233233
assert guest_feats - host_feats == set()
234234
case _:
235235
assert False, f"Cpu model {cpu_model} is not supported"

0 commit comments

Comments
 (0)