From patchwork Wed Jul 15 07:48:25 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Frysinger X-Patchwork-Id: 7682 X-Patchwork-Delegate: vapier@gentoo.org Received: (qmail 67186 invoked by alias); 15 Jul 2015 07:48:31 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 67176 invoked by uid 89); 15 Jul 2015 07:48:30 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.5 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 X-HELO: smtp.gentoo.org From: Mike Frysinger To: libc-alpha@sourceware.org Subject: [PATCH] tst-tzset: raise timeout to 5 seconds Date: Wed, 15 Jul 2015 03:48:25 -0400 Message-Id: <1436946505-14013-1-git-send-email-vapier@gentoo.org> This test is reliably taking 2.3 seconds on my system, and the default is 2 seconds, so it always times out. Bump it up to 5 seconds instead. --- ChangeLog | 4 ++++ timezone/tst-tzset.c | 1 + 2 files changed, 5 insertions(+) diff --git a/ChangeLog b/ChangeLog index eea74e9..2d3152d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2015-07-15 Mike Frysinger + + * timezone/tst-tzset.c (TIMEOUT): Define to 5. + 2015-07-15 Stefan Liebler * sysdeps/i386/i686/Makefile (test-xfail-tst-makecontext): diff --git a/timezone/tst-tzset.c b/timezone/tst-tzset.c index aefcc76..67bb288 100644 --- a/timezone/tst-tzset.c +++ b/timezone/tst-tzset.c @@ -25,6 +25,7 @@ #include #include +#define TIMEOUT 5 static int do_test (void); #define TEST_FUNCTION do_test () #include "../test-skeleton.c"