Skip to content

Commit aa73f45

Browse files
ShadowCursebchalios
authored andcommitted
fix(tests): adjust G4 guest features with sve+pac cpu template
Add a case for G4 with sve+pac template to the guest cpu feature check test. Signed-off-by: Egor Lazarchuk <[email protected]>
1 parent c4a9ea9 commit aa73f45

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/integration_tests/functional/test_cpu_features_aarch64.py

+6
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@
2626

2727
G4_FEATS = (G3_FEATS | set("bti flagm2 frint sb".split())) - set("sm3 sm4".split())
2828

29+
G4_SVE_AND_PAC = set(
30+
"paca pacg sve sve2 sveaes svebitperm svepmull svesha3 svebf16 svei8mm".split()
31+
)
32+
2933

3034
def test_guest_cpu_features(uvm_any):
3135
"""Check the CPU features for a microvm with different CPU templates"""
@@ -47,6 +51,8 @@ def test_guest_cpu_features(uvm_any):
4751
expected_cpu_features = G3_FEATS
4852
case CpuModel.ARM_NEOVERSE_V2, None:
4953
expected_cpu_features = G4_FEATS
54+
case CpuModel.ARM_NEOVERSE_V2, "aarch64_with_sve_and_pac":
55+
expected_cpu_features = G4_FEATS | G4_SVE_AND_PAC
5056

5157
guest_feats = set(vm.ssh.check_output(CPU_FEATURES_CMD).stdout.split())
5258
assert guest_feats == expected_cpu_features

0 commit comments

Comments
 (0)