From: Bruno Haible Date: Sat, 12 Jan 2008 00:14:37 +0000 (+0100) Subject: Increase the maximum allowed time for the test. X-Git-Tag: v0.1~7845 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=4cc1c913a03d9f6318453806494ca52ea3884d4a;p=gnulib.git Increase the maximum allowed time for the test. --- diff --git a/ChangeLog b/ChangeLog index 0feb06ed5..82102a4dd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,9 @@ -2008-01-10 Bruno Haible +2008-01-11 Bruno Haible + + * tests/test-memmem.c (main): Increase maximum allowed time. + * tests/test-strstr.c (main): Likewise. + +2008-01-11 Bruno Haible * doc/functions/memmem.texi: Add more precisions about platforms. * doc/functions/strstr.texi: Likewise. diff --git a/tests/test-memmem.c b/tests/test-memmem.c index 3ce54c7ac..58043cdcd 100644 --- a/tests/test-memmem.c +++ b/tests/test-memmem.c @@ -42,7 +42,7 @@ main (int argc, char *argv[]) caused by SIGALRM. All known platforms that lack alarm also lack memmem, and the replacement memmem is known to not take too long. */ - alarm (10); + alarm (100); #endif { diff --git a/tests/test-strstr.c b/tests/test-strstr.c index a4cc0fc77..b03fcf906 100644 --- a/tests/test-strstr.c +++ b/tests/test-strstr.c @@ -42,7 +42,7 @@ main (int argc, char *argv[]) caused by SIGALRM. All known platforms that lack alarm also have a quadratic strstr, and the replacement strstr is known to not take too long. */ - alarm (10); + alarm (50); #endif {