Skip to content
Merged
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
8 changes: 4 additions & 4 deletions tests/integration_tests/performance/test_block.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def emit_fio_metrics(logs_dir, metrics):
@pytest.mark.parametrize("fio_block_size", [4096], ids=["bs4096"])
@pytest.mark.parametrize("fio_engine", ["libaio", "psync"])
def test_block_performance(
uvm_any_acpi,
uvm_plain_acpi,
vcpus,
fio_mode,
fio_block_size,
Expand All @@ -173,7 +173,7 @@ def test_block_performance(
"""
Execute block device emulation benchmarking scenarios.
"""
vm = uvm_any_acpi
vm = uvm_plain_acpi
vm.spawn(log_level="Info", emit_metrics=True)
vm.basic_config(vcpu_count=vcpus, mem_size_mib=GUEST_MEM_MIB)
vm.add_net_iface()
Expand Down Expand Up @@ -211,7 +211,7 @@ def test_block_performance(
@pytest.mark.parametrize("fio_mode", ["randread"])
@pytest.mark.parametrize("fio_block_size", [4096], ids=["bs4096"])
def test_block_vhost_user_performance(
uvm_any_acpi,
uvm_plain_acpi,
vcpus,
fio_mode,
fio_block_size,
Expand All @@ -222,7 +222,7 @@ def test_block_vhost_user_performance(
Execute block device emulation benchmarking scenarios.
"""

vm = uvm_any_acpi
vm = uvm_plain_acpi
vm.spawn(log_level="Info", emit_metrics=True)
vm.basic_config(vcpu_count=vcpus, mem_size_mib=GUEST_MEM_MIB)
vm.add_net_iface()
Expand Down