From ef554ba13c5eb6ec4e39bfc6fad1bdf9600f4cfb Mon Sep 17 00:00:00 2001 From: Sebastien Boeuf Date: Tue, 7 Jul 2020 10:15:43 +0200 Subject: [PATCH] ci: Increase time to stabilize memory measurement Check if increasing the time after the VM is spawned help with getting more stable numbers for the base PSS. Signed-off-by: Sebastien Boeuf --- tests/integration.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration.rs b/tests/integration.rs index 12f43d7a9..48b087e04 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -1869,7 +1869,7 @@ mod tests { // Let enough time for the first VM to be spawned, and to make // sure the PSS measurement is accurate. - thread::sleep(std::time::Duration::new(60, 0)); + thread::sleep(std::time::Duration::new(120, 0)); // Get initial PSS let old_pss = get_pss(child1.id());