From eaf7f46cdc0b743dc22d81003f6efa8a0c9031f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Syrj=C3=A4l=C3=A4?= Date: Tue, 5 Apr 2016 20:45:42 +0300 Subject: [PATCH] tests/pm_rps: Increase timeouts to 15 seconds MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit My BSW takes ~12 seconds to go back to idle after high load, so the current 10s timeouts are too short. Bump them up to 15s. Signed-off-by: Ville Syrjälä --- tests/pm_rps.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/pm_rps.c b/tests/pm_rps.c index 484db0b5..c3d4417d 100644 --- a/tests/pm_rps.c +++ b/tests/pm_rps.c @@ -464,7 +464,7 @@ static void basic_check(void) } #define IDLE_WAIT_TIMESTEP_MSEC 100 -#define IDLE_WAIT_TIMEOUT_MSEC 10000 +#define IDLE_WAIT_TIMEOUT_MSEC 15000 static void idle_check(void) { int freqs[NUMFREQ]; @@ -510,7 +510,7 @@ static void loaded_check(void) } #define STABILIZE_WAIT_TIMESTEP_MSEC 100 -#define STABILIZE_WAIT_TIMEOUT_MSEC 10000 +#define STABILIZE_WAIT_TIMEOUT_MSEC 15000 static void stabilize_check(int *freqs) { int wait = 0;