This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.24-459-gfea34d5


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  fea34d51e03ec5ebf9b25cb3010751782bf27fb1 (commit)
      from  0abbe7cd700951082b314182a0958d65238297ef (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=fea34d51e03ec5ebf9b25cb3010751782bf27fb1

commit fea34d51e03ec5ebf9b25cb3010751782bf27fb1
Author: Andreas Schwab <schwab@linux-m68k.org>
Date:   Sat Dec 10 16:10:53 2016 +0100

    Fix testsuite timeout handling

diff --git a/ChangeLog b/ChangeLog
index 5a9191a..5d51e9a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2016-12-10  Andreas Schwab  <schwab@linux-m68k.org>
+
+	* support/support_test_main.c (support_test_main): Use correct
+	timeout.
+
 2016-12-09  Carlos O'Donell  <carlos@redhat.com>
 	    Florian Weimer  <fweimer@redhat.com>
 
diff --git a/support/support_test_main.c b/support/support_test_main.c
index 72771bf..e185281 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);

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                   |    5 +++++
 support/support_test_main.c |    2 +-
 2 files changed, 6 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]