Skip to content

Commit

Permalink
Merge branch 'main' into msr-rfds-update
Browse files Browse the repository at this point in the history
  • Loading branch information
roypat authored Apr 3, 2024
2 parents fe199c8 + 4992bf3 commit 66031fd
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/integration_tests/functional/test_topology.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import pytest

import framework.utils_cpuid as utils
from framework.properties import global_props

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


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

0 comments on commit 66031fd

Please sign in to comment.