Skip to content

Commit

Permalink
fix(tests): add switch case for AMD_GENOA to the cpu features test
Browse files Browse the repository at this point in the history
During previous refactoring, this switch was accidentally removed.

Signed-off-by: Egor Lazarchuk <[email protected]>
  • Loading branch information
ShadowCurse committed Dec 6, 2024
1 parent 1f94a59 commit 609f455
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,10 @@ def test_host_vs_guest_cpu_features(uvm_nano):
"tsc_known_freq",
}

case CpuModel.AMD_GENOA:
# Return here to allow the test to pass until CPU features to enable are confirmed
return

case CpuModel.INTEL_SKYLAKE:
assert host_feats - guest_feats == INTEL_HOST_ONLY_FEATS
assert guest_feats - host_feats == {
Expand Down

0 comments on commit 609f455

Please sign in to comment.