diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2021-12-04 11:25:53 -0800 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2021-12-04 12:58:28 -0800 |
commit | bada2e312a8b94c5fc2f5571b249c71cb466a640 (patch) | |
tree | 0d9ae0da8f6abf3e0f6136b581cdbeaca7c5be04 /configure.ac | |
parent | 4df1fa6ddc8925a75f3da644d5da3bb16eb33f02 (diff) | |
download | glibc-bada2e312a8b94c5fc2f5571b249c71cb466a640.tar.gz glibc-bada2e312a8b94c5fc2f5571b249c71cb466a640.tar.xz glibc-bada2e312a8b94c5fc2f5571b249c71cb466a640.zip |
Add --with-timeoutfactor=NUM to specify TIMEOUTFACTOR
On Ice Lake and Tiger Lake laptops, some test programs timeout when there are 3 "make check -j8" runs in parallel. Add --with-timeoutfactor=NUM to specify an integer to scale the timeout of test programs, which can be overriden by TIMEOUTFACTOR environment variable. Reviewed-by: Florian Weimer <fweimer@redhat.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 7eb4239359..a91a7f399c 100644 --- a/configure.ac +++ b/configure.ac @@ -163,6 +163,13 @@ AC_ARG_WITH([nonshared-cflags], [extra_nonshared_cflags=]) AC_SUBST(extra_nonshared_cflags) +AC_ARG_WITH([timeoutfactor], + AS_HELP_STRING([--with-timeoutfactor=NUM], + [specify an integer to scale the timeout]), + [timeoutfactor=$withval], + [timeoutfactor=1]) +AC_DEFINE_UNQUOTED(TIMEOUTFACTOR, $timeoutfactor) + AC_ARG_ENABLE([sanity-checks], AS_HELP_STRING([--disable-sanity-checks], [really do not use threads (should not be used except in special situations) @<:@default=yes@:>@]), |