Skip to content

Commit 761909d

Browse files
ShadowCursepb8o
authored andcommitted
fix(tests): add switch case for AMD_GENOA to the cpu features test
During previous refactoring, this switch was accidentally removed. Signed-off-by: Egor Lazarchuk <[email protected]>
1 parent 1f94a59 commit 761909d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/integration_tests/functional/test_cpu_features_host_vs_guest.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,10 @@ def test_host_vs_guest_cpu_features(uvm_nano):
150150
"tsc_known_freq",
151151
}
152152

153+
case CpuModel.AMD_GENOA:
154+
# Return here to allow the test to pass until CPU features to enable are confirmed
155+
return
156+
153157
case CpuModel.INTEL_SKYLAKE:
154158
assert host_feats - guest_feats == INTEL_HOST_ONLY_FEATS
155159
assert guest_feats - host_feats == {

0 commit comments

Comments
 (0)