From 7b1d5c1ad9335acd64c332d0076a851b50cadeb8 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Wed, 4 Mar 2020 16:19:56 +0000 Subject: [PATCH] tests: Remove entropy check from vhost-user-block test When booting from vhost-user-block the entropy is sometimes lower triggering a flaky test. We have already use other, more reliable methods for checking that the VM has booted. Signed-off-by: Rob Bradford --- tests/integration.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/integration.rs b/tests/integration.rs index b7a1e869c..4f54138f2 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -1596,7 +1596,6 @@ mod tests { // Just check the VM booted correctly. aver_eq!(tb, guest.get_cpu_count().unwrap_or_default(), 1); aver!(tb, guest.get_total_memory().unwrap_or_default() > 491_000); - aver!(tb, guest.get_entropy().unwrap_or_default() >= 900); let _ = cloud_child.kill(); let _ = cloud_child.wait();