From: Szabolcs Nagy Date: Tue, 29 Mar 2022 08:50:23 +0000 (+0100) Subject: Increase the test timeout of some string tests X-Git-Tag: glibc-2.36~412 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6ff3c7714900529b8f5ca64b58d5da9cd5d5b345;p=thirdparty%2Fglibc.git Increase the test timeout of some string tests Recent changes in test-strncasecmp and test-strncmp pushed the run time of the tests above the 4 minute limit specified in test-string.h on an arm tester machine. --- diff --git a/string/test-strncasecmp.c b/string/test-strncasecmp.c index b86c630bf6e..1aebc37bb6a 100644 --- a/string/test-strncasecmp.c +++ b/string/test-strncasecmp.c @@ -24,6 +24,7 @@ #define TEST_MAIN #define TEST_NAME "strncasecmp" +#define TIMEOUT (5 * 60) #include "test-string.h" typedef int (*proto_t) (const char *, const char *, size_t); diff --git a/string/test-strncmp.c b/string/test-strncmp.c index bba9e3d2dce..3e351425482 100644 --- a/string/test-strncmp.c +++ b/string/test-strncmp.c @@ -25,6 +25,7 @@ #else # define TEST_NAME "strncmp" #endif +#define TIMEOUT (5 * 60) #include "test-string.h" #ifdef WIDE