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 <rbradford@rivosinc.com>
This commit is contained in:
Rob Bradford
2025-04-12 18:36:27 +01:00
parent 6e4bf84383
commit 29b089296d

View File

@@ -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 {