Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions tests/integration_tests/performance/test_hotplug_memory.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
run on an ag=1 host due to the use of HugePages.
"""

import platform

import pytest
from tenacity import Retrying, retry_if_exception_type, stop_after_delay, wait_fixed

Expand Down Expand Up @@ -252,6 +254,11 @@ def check_hotunplug(uvm, requested_size_mib):
assert rss_after < rss_before, "RSS didn't decrease"


# TODO remove this once fixed
@pytest.mark.skipif(
platform.machine() == "x86_64" and global_props.host_linux_version_tpl == (5, 10),
reason="This test is timing out on x86_64 5.10 kernels and blocks all pipelines",
)
def test_virtio_mem_hotplug_hotunplug(uvm_any_memhp):
"""
Check that memory can be hotplugged into the VM.
Expand Down
Loading