From 3a5ee1c4117521b74c84e42a304c325041d6bf4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Wed, 19 Aug 2015 14:48:34 +0200 Subject: [PATCH] Increase tolerance of timing selftest Forgot to move that one to 20% in previous commit --- library/timing.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/timing.c b/library/timing.c index a7ad45bca..50410df01 100644 --- a/library/timing.c +++ b/library/timing.c @@ -484,7 +484,7 @@ hard_test_done: millisecs = get_timer( &hires, 0 ); - if( millisecs < 450 * secs || millisecs > 550 * secs ) + if( millisecs < 400 * secs || millisecs > 600 * secs ) { if( verbose != 0 ) polarssl_printf( "failed\n" );