diff options
author | Szabolcs Nagy <szabolcs.nagy@arm.com> | 2018-10-09 14:31:28 +0100 |
---|---|---|
committer | Szabolcs Nagy <szabolcs.nagy@arm.com> | 2018-10-09 15:56:12 +0100 |
commit | ed643089cd3251038863d32e67ec47b94cd557f3 (patch) | |
tree | 7b88248c92a33a601a437f839b1ec46cb54108ab /libio | |
parent | 5a580643111ef6081be7b4c7bd1997a5447c903f (diff) | |
download | glibc-ed643089cd3251038863d32e67ec47b94cd557f3.zip glibc-ed643089cd3251038863d32e67ec47b94cd557f3.tar.gz glibc-ed643089cd3251038863d32e67ec47b94cd557f3.tar.bz2 |
Increase timeout of libio/tst-readline
Increase timeout from the default 20s to 100s. This test makes close to
20 million syscalls with distribution:
12327675 read
4143204 lseek
929475 close
929471 openat
92817 fstat
1431 write
...
The default timeout assumes each can finish in 1us on average which
is not true on slow machines.
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
* libio/tst-readline.c (TIMEOUT): Define.
Diffstat (limited to 'libio')
-rw-r--r-- | libio/tst-readline.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libio/tst-readline.c b/libio/tst-readline.c index 9322ef6..63f5227 100644 --- a/libio/tst-readline.c +++ b/libio/tst-readline.c @@ -232,5 +232,6 @@ do_test (void) return 0; } +#define TIMEOUT 100 #define PREPARE prepare #include <support/test-driver.c> |