From b9f086bcb3b1b51c4e90e12259597c88ea9439be Mon Sep 17 00:00:00 2001 From: Praveen K Paladugu Date: Tue, 30 Jul 2024 15:27:35 +0000 Subject: [PATCH] tests: drop landlock parameter while starting dest After moving landlock config to VMConfig, there is no need to start destination VM with landlock cmdline options in test_live_migration_with_landlock test. Signed-off-by: Praveen K Paladugu --- tests/integration.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/integration.rs b/tests/integration.rs index f600b778d..a39317b46 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -10213,11 +10213,6 @@ mod live_migration { dest_api_socket.push_str(".dest"); let mut dest_child = GuestCommand::new(&guest) .args(["--api-socket", &dest_api_socket]) - .args(["--landlock"]) - .args([ - "--landlock-rules", - format!("path={:?},access=rw", guest.tmp_dir.as_path()).as_str(), - ]) .capture_output() .spawn() .unwrap();