Increase some test timeouts.
authorJoseph Myers <joseph@codesourcery.com>
Thu, 5 Jan 2017 17:39:38 +0000 (17:39 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Thu, 5 Jan 2017 17:39:38 +0000 (17:39 +0000)
This patch increases timeouts on some tests I've observed timing out.

elf/tst-tls13 and iconvdata/tst-loading both dynamically load many
objects and so are slow when testing over NFS.  They had timeouts set
from before the default changed from 2 to 20 seconds; this patch
removes those old settings, so effectively increasing the timeout to
20 seconds (from 3 and 10 seconds respectively).

malloc/tst-malloc-thread-fail.c and malloc/tst-mallocfork2.c are slow
on slow systems and so I set a fairly arbitrary 100 second timeout,
which seems to suffice on the system where I saw them timing out.

nss/tst-cancel-getpwuid_r.c and nss/tst-nss-getpwent.c are slow on
systems with a large passwd file; I set timeouts that empirically
worked for me.  (It seems tst-cancel-getpwuid_r.c is hitting the
100000 getpwuid_r call limit in my testing, with each call taking a
bit over 0.007 seconds, so 700 seconds for the test.)

* elf/tst-tls13.c (TIMEOUT): Remove.
* iconvdata/tst-loading.c (TIMEOUT): Likewise.
* malloc/tst-malloc-thread-fail.c (TIMEOUT): Increase to 100.
* malloc/tst-mallocfork2.c (TIMEOUT): Define to 100.
* nss/tst-cancel-getpwuid_r.c (TIMEOUT): Define to 900.
* nss/tst-nss-getpwent.c (TIMEOUT): Define to 300.

ChangeLog
elf/tst-tls13.c
iconvdata/tst-loading.c
malloc/tst-malloc-thread-fail.c
malloc/tst-mallocfork2.c
nss/tst-cancel-getpwuid_r.c
nss/tst-nss-getpwent.c

index 801bb3a..88f9f06 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
 2017-01-05  Joseph Myers  <joseph@codesourcery.com>
 
+       * elf/tst-tls13.c (TIMEOUT): Remove.
+       * iconvdata/tst-loading.c (TIMEOUT): Likewise.
+       * malloc/tst-malloc-thread-fail.c (TIMEOUT): Increase to 100.
+       * malloc/tst-mallocfork2.c (TIMEOUT): Define to 100.
+       * nss/tst-cancel-getpwuid_r.c (TIMEOUT): Define to 900.
+       * nss/tst-nss-getpwent.c (TIMEOUT): Define to 300.
+
        [BZ #21026]
        * sysdeps/unix/sysv/linux/mips/mips64/n64/syscalls.list
        (readahead): New syscall entry.
index 06bfbac..9af08cf 100644 (file)
@@ -26,5 +26,4 @@ do_test (void)
 }
 
 #define TEST_FUNCTION do_test ()
-#define TIMEOUT 3
 #include "../test-skeleton.c"
index dd820e1..4aac51c 100644 (file)
@@ -181,6 +181,5 @@ do_test (void)
   return result;
 }
 
-#define TIMEOUT 10
 #define TEST_FUNCTION do_test ()
 #include "../test-skeleton.c"
index 7f5b046..2745a33 100644 (file)
@@ -436,7 +436,7 @@ do_test (void)
 }
 
 /* The repeated allocations take some time on slow machines.  */
-#define TIMEOUT 30
+#define TIMEOUT 100
 
 #define TEST_FUNCTION do_test ()
 #include "../test-skeleton.c"
index c896628..bb6a331 100644 (file)
@@ -45,6 +45,7 @@ enum { malloc_maximum_size = 70000 };
 enum { signal_count = 1000 };
 
 static int do_test (void);
+#define TIMEOUT 100
 #define TEST_FUNCTION do_test ()
 #include "../test-skeleton.c"
 
index 254024f..d4fbb86 100644 (file)
@@ -177,4 +177,5 @@ do_test (void)
   return 0;
 }
 
+#define TIMEOUT 900
 #include <support/test-driver.c>
index 7a6d81b..7bd69fc 100644 (file)
@@ -114,5 +114,6 @@ do_test (void)
   return 0;
 }
 
+#define TIMEOUT 300
 #define TEST_FUNCTION do_test ()
 #include "../test-skeleton.c"