From: Chris Metcalf Date: Fri, 19 Dec 2014 20:11:04 +0000 (-0500) Subject: math: increase timeout for math/atest-*.c X-Git-Tag: glibc-2.21~192 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4ef91cdca8441dba53a01427d95d77789951b9aa;p=thirdparty%2Fglibc.git math: increase timeout for math/atest-*.c These tests run in the 2-5 second range on tilegx, so just bump up the timeout to 10 seconds generically. --- diff --git a/ChangeLog b/ChangeLog index e7392a8ac18..e15a3cf8af5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2014-12-19 Chris Metcalf + + * math/atest-exp.c (TIMEOUT): Increase timeout to 10 sec. + * math/atest-exp2.c (TIMEOUT): Likewise. + * math/atest-sincos.c (TIMEOUT): Likewise. + 2014-12-19 H.J. Lu * sysdeps/x86_64/x32/Makefile (CFLAGS-s_llround.c): Replace diff --git a/math/atest-exp.c b/math/atest-exp.c index 6a551deef0f..406b00b6dcd 100644 --- a/math/atest-exp.c +++ b/math/atest-exp.c @@ -191,5 +191,6 @@ do_test (void) return failures == 0 ? 0 : 1; } +#define TIMEOUT 10 #define TEST_FUNCTION do_test () #include "../test-skeleton.c" diff --git a/math/atest-exp2.c b/math/atest-exp2.c index 945bb7accf9..45999948c4a 100644 --- a/math/atest-exp2.c +++ b/math/atest-exp2.c @@ -228,5 +228,6 @@ do_test (void) return failures == 0 ? 0 : 1; } +#define TIMEOUT 10 #define TEST_FUNCTION do_test () #include "../test-skeleton.c" diff --git a/math/atest-sincos.c b/math/atest-sincos.c index 1f5e7307e9e..fd0aa2b2bf5 100644 --- a/math/atest-sincos.c +++ b/math/atest-sincos.c @@ -278,5 +278,6 @@ do_test (void) return (sin_failures == 0 && cos_failures == 0) ? 0 : 1; } +#define TIMEOUT 10 #define TEST_FUNCTION do_test () #include "../test-skeleton.c"