Skip to content

Commit 2d815e7

Browse files
committed
fix(test): cleanup vm on pmem
We are generating multiple vms in a loop however the factory holds onto a reference to these so are not killed as they go out of scope. Explicitly kill the vm after each loop. Signed-off-by: Jack Thomson <jackabt@amazon.com>
1 parent c7ab207 commit 2d815e7

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

tests/integration_tests/performance/test_pmem.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,5 +197,6 @@ def test_pmem_first_read(
197197
}
198198
)
199199
run_fio_single_read(vm, i, results_dir, fio_block_size)
200+
vm.kill()
200201

201202
emit_fio_single_read_metrics(results_dir, metrics)

0 commit comments

Comments
 (0)