Skip to content

Commit 3f3f6a9

Browse files
pb8obchalios
authored andcommitted
fix(test): correct expected aarch64 CPU features
In ddd9836 a mistake was introduced for `DEFAULT_G3_FEATURES_NO_SSBS_4_14`. Correct it here. Fixes: ddd9836 Signed-off-by: Pablo Barbáchano <[email protected]>
1 parent b94c475 commit 3f3f6a9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration_tests/functional/test_cpu_features_aarch64.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
"dcpodp i8mm bf16 dgh rng".split(" ")
3131
)
3232

33-
DEFAULT_G3_FEATURES_NO_SSBS_4_14 = DEFAULT_G3_FEATURES_5_10 - {"ssbs"}
34-
DEFAULT_G3_FEATURES_NO_SSBS_5_10 = DEFAULT_G3_FEATURES_NO_SSBS_4_14
33+
DEFAULT_G3_FEATURES_NO_SSBS_4_14 = DEFAULT_G3_FEATURES_4_14 - {"ssbs"}
34+
DEFAULT_G3_FEATURES_NO_SSBS_5_10 = DEFAULT_G3_FEATURES_5_10 - {"ssbs"}
3535

3636
DEFAULT_G3_FEATURES_WITH_SVE_AND_PAC_4_14 = DEFAULT_G3_FEATURES_4_14
3737
DEFAULT_G3_FEATURES_WITH_SVE_AND_PAC_5_10 = DEFAULT_G3_FEATURES_5_10 | set(

0 commit comments

Comments
 (0)