diff --git a/tests/integration.rs b/tests/integration.rs index 7fcd76868..5edb44e86 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -6275,6 +6275,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();