From 29b089296d1b4125636612ecd22ff937a0e55c38 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Sat, 12 Apr 2025 18:36:27 +0100 Subject: [PATCH] tests: Move test_virtio_pmem_persist_writes to sequential group This test has been generating a flaky OOM situation when run in the parallel group. Signed-off-by: Rob Bradford --- tests/integration.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/integration.rs b/tests/integration.rs index a8c7d7dd3..714ac77f1 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -3793,11 +3793,6 @@ mod common_parallel { _test_virtio_fs(&prepare_virtiofsd, false, Some(15)) } - #[test] - fn test_virtio_pmem_persist_writes() { - test_virtio_pmem(false, false) - } - #[test] fn test_virtio_pmem_discard_writes() { test_virtio_pmem(true, false) @@ -7957,6 +7952,11 @@ mod common_sequential { handle_child_output(r, &output); } + + #[test] + fn test_virtio_pmem_persist_writes() { + test_virtio_pmem(false, false) + } } mod windows {