From e1ff1423921d086ee7b19d2851bdee66257a4825 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Fri, 29 Nov 2019 09:32:25 +0000 Subject: [PATCH] tests: Remove MSI only test from test_serial_off Now we have a GED device we are not MSI only when the serial port is turned off. Signed-off-by: Rob Bradford --- src/main.rs | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/main.rs b/src/main.rs index 827a46962..018a740aa 100755 --- a/src/main.rs +++ b/src/main.rs @@ -2041,18 +2041,6 @@ mod tests { 0 ); - // Further test that we're MSI only now - aver_eq!( - tb, - guest - .ssh_command("cat /proc/interrupts | grep -c 'IO-APIC'") - .unwrap_or_default() - .trim() - .parse::() - .unwrap_or(1), - 0 - ); - guest.ssh_command("sudo shutdown -h now")?; thread::sleep(std::time::Duration::new(10, 0)); let _ = child.kill();