summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@linux-m68k.org>2016-12-10 16:10:53 +0100
committerAndreas Schwab <schwab@linux-m68k.org>2016-12-10 16:22:01 +0100
commitfea34d51e03ec5ebf9b25cb3010751782bf27fb1 (patch)
treef34ea1646fd1fb9f822e958683d7cdb33c5f6388 /support
parent0abbe7cd700951082b314182a0958d65238297ef (diff)
Fix testsuite timeout handling
Diffstat (limited to 'support')
-rw-r--r--support/support_test_main.c2
1 files changed, 1 insertions, 1 deletions
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);
/* Make sure we clean up if the wrapper gets interrupted. */
signal (SIGINT, signal_handler);