[PATCH] Fix testsuite timeout handling

Florian Weimer fweimer@redhat.com
Sat Dec 10 15:36:00 GMT 2016


On 12/10/2016 04:23 PM, Andreas Schwab wrote:
> 	* support/support_test_main.c (support_test_main): Use correct
> 	timeout.
>
> diff --git a/support/support_test_main.c b/support/support_test_main.c
> index 72771bf101..e185281eaf 100644
> --- a/support/support_test_main.c
> +++ b/support/support_test_main.c
> @@ -338,7 +338,7 @@ support_test_main (int argc, char **argv, const struct test_config *config)
>
>    /* Set timeout.  */
>    signal (SIGALRM, signal_handler);
> -  alarm (config->timeout * timeoutfactor);
> +  alarm (timeout * timeoutfactor);

Looks good to me.

Thanks,
Florian



More information about the Libc-alpha mailing list