Skip to content

Commit 66031fd

Browse files
authored
Merge branch 'main' into msr-rfds-update
2 parents fe199c8 + 4992bf3 commit 66031fd

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

tests/integration_tests/functional/test_topology.py

+7
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
import pytest
99

1010
import framework.utils_cpuid as utils
11+
from framework.properties import global_props
1112

1213
TOPOLOGY_STR = {1: "0", 2: "0,1", 16: "0-15"}
1314
PLATFORM = platform.machine()
@@ -128,6 +129,12 @@ def test_cpu_topology(uvm_plain_any, num_vcpus, htt):
128129
)
129130

130131

132+
# TODO remove this check once the solution for keeping
133+
# an old cache representation is found.
134+
@pytest.mark.skipif(
135+
global_props.host_linux_version == "6.5" and PLATFORM == "aarch64",
136+
reason="6.5 kernel changes cache representation for aarch64.",
137+
)
131138
@pytest.mark.parametrize("num_vcpus", [1, 2, 16])
132139
@pytest.mark.parametrize("htt", [True, False])
133140
def test_cache_topology(uvm_plain_any, num_vcpus, htt):

0 commit comments

Comments
 (0)