Skip to content

Commit a5334bf

Browse files
Manciukicbchalios
authored andcommitted
fix(test_block): correct fixture name s/uvm_any_acpi/uvm_plain_acpi/
Fix the block tests by using the correct fixture name. Fixes: eb7248f ("refactor(test): add uvm_plain_acpi and _6_1 fixtures") Signed-off-by: Riccardo Mancini <[email protected]> Signed-off-by: Babis Chalios <[email protected]>
1 parent 62d555c commit a5334bf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/integration_tests/performance/test_block.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def emit_fio_metrics(logs_dir, metrics):
161161
@pytest.mark.parametrize("fio_block_size", [4096], ids=["bs4096"])
162162
@pytest.mark.parametrize("fio_engine", ["libaio", "psync"])
163163
def test_block_performance(
164-
uvm_any_acpi,
164+
uvm_plain_acpi,
165165
vcpus,
166166
fio_mode,
167167
fio_block_size,
@@ -173,7 +173,7 @@ def test_block_performance(
173173
"""
174174
Execute block device emulation benchmarking scenarios.
175175
"""
176-
vm = uvm_any_acpi
176+
vm = uvm_plain_acpi
177177
vm.spawn(log_level="Info", emit_metrics=True)
178178
vm.basic_config(vcpu_count=vcpus, mem_size_mib=GUEST_MEM_MIB)
179179
vm.add_net_iface()
@@ -211,7 +211,7 @@ def test_block_performance(
211211
@pytest.mark.parametrize("fio_mode", ["randread"])
212212
@pytest.mark.parametrize("fio_block_size", [4096], ids=["bs4096"])
213213
def test_block_vhost_user_performance(
214-
uvm_any_acpi,
214+
uvm_plain_acpi,
215215
vcpus,
216216
fio_mode,
217217
fio_block_size,
@@ -222,7 +222,7 @@ def test_block_vhost_user_performance(
222222
Execute block device emulation benchmarking scenarios.
223223
"""
224224

225-
vm = uvm_any_acpi
225+
vm = uvm_plain_acpi
226226
vm.spawn(log_level="Info", emit_metrics=True)
227227
vm.basic_config(vcpu_count=vcpus, mem_size_mib=GUEST_MEM_MIB)
228228
vm.add_net_iface()

0 commit comments

Comments
 (0)