diff --git a/tests/integration.rs b/tests/integration.rs index 60631c8f7..758bfaa54 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -6226,6 +6226,18 @@ mod common_parallel { .unwrap_or_default(), 2 ); + + guest.reboot_linux(0, None); + + assert_eq!( + guest + .ssh_command("ip -o link | wc -l") + .unwrap() + .trim() + .parse::() + .unwrap_or_default(), + 2 + ); }); let _ = child.kill();