From patchwork Thu Dec 18 00:47:27 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chris Metcalf X-Patchwork-Id: 4328 Received: (qmail 14152 invoked by alias); 18 Dec 2014 00:55:54 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 14143 invoked by uid 89); 18 Dec 2014 00:55:53 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.9 required=5.0 tests=AWL, BAYES_00, NO_DNS_FOR_FROM, T_RP_MATCHES_RCVD autolearn=no version=3.3.2 X-HELO: gx-1.internal.tilera.com Message-Id: <201412180055.sBI0ti1h004371@gx-1.internal.tilera.com> From: Chris Metcalf Date: Wed, 17 Dec 2014 19:47:27 -0500 Subject: [PATCH] math: increase timeout for math/atest-*.c To: libc-alpha@sourceware.org This seems pretty straightforward, so barring any objection I'll commit this in a day or so. 2014-12-17 Chris Metcalf * math/atest-exp.c (TIMEOUT): Increase timeout to 10 sec. * math/atest-exp2.c (TIMEOUT): Likewise. * math/atest-sincos.c (TIMEOUT): Likewise. These tests run in the 2-5 second range on tilegx, so just bump up the timeout to 10 seconds generically. --- math/atest-exp.c | 1 + math/atest-exp2.c | 1 + math/atest-sincos.c | 1 + 3 files changed, 3 insertions(+), 0 deletions(-) diff --git a/math/atest-exp.c b/math/atest-exp.c index 6a551de..406b00b 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 945bb7a..4599994 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 1f5e730..fd0aa2b 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"