From 92d083f5932e9a75b0be90b35b232bc27af123b1 Mon Sep 17 00:00:00 2001 From: Muminul Islam Date: Thu, 3 Nov 2022 11:45:49 -0700 Subject: [PATCH] tests: Add a basic test for snapshot/retsore Signed-off-by: Muminul Islam --- tests/integration.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/integration.rs b/tests/integration.rs index 3d88ba949..63565de4e 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -5693,6 +5693,11 @@ mod common_parallel { _test_snapshot_restore(true); } + #[test] + fn test_snapshot_restore_basic() { + _test_snapshot_restore(false); + } + fn _test_snapshot_restore(use_hotplug: bool) { let focal = UbuntuDiskConfig::new(FOCAL_IMAGE_NAME.to_string()); let guest = Guest::new(Box::new(focal));