From patchwork Mon Jul 30 16:13:34 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexey Brodkin X-Patchwork-Id: 28683 Received: (qmail 59538 invoked by alias); 30 Jul 2018 16:13:50 -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 59356 invoked by uid 89); 30 Jul 2018 16:13:49 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.8 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_PASS, URIBL_RED autolearn=ham version=3.3.2 spammy=Hx-languages-length:1075 X-HELO: smtprelay.synopsys.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=synopsys.com; s=mail; t=1532967226; bh=MJu5qSV75vzno/AwXW/XogKsdK+E0u3RxxHM3gLBUuk=; h=From:To:Cc:Subject:Date:From; b=P/USn70lLmWpa5ASpacaOCSBvGw7NUj7IV9QzyDR1a/QDXwkOuMF9Zr6R2xr5VuA8 qer4MK/dt0emUBhYGllvDCwjcuyRmfRnjd/nRsMi/k8xeTgR9x7Z5w0kzFwiJZ1YIq yQNGlnXgzw9OXD217E1X3ry09RS+cccGgy1paZ/BrvDLtUQeRaonoq3wqUATYJKz0e 7NqSV5yaDq9CW3Kf0g1kpUqHX6dGim1A102Qr0KhIsq7WFVB7uiC14sFWBHA9DJxi1 Kd3BuY088pEU+Pp19wVI2lADvtgIBeHg/To2HLLuHN4CPURTt4Vbu689W9AAFf9/uI lf2F49TKPDblQ== From: Alexey Brodkin To: libc-alpha@sourceware.org Cc: linux-snps-arc@lists.infradead.org, Alexey Brodkin , Joseph Myers , Andreas Schwab Subject: [PATCH v2] tst-tzset: Use default timeout (20 seconds as of now) Date: Mon, 30 Jul 2018 19:13:34 +0300 Message-Id: <20180730161334.26026-1-abrodkin@synopsys.com> The timeout was set to 5 seconds in commit 112f28e88c4e ("tst-tzset: raise timeout to 5 seconds") to increase it from a default 2 seconds. That was before the default timeout was changed to 20 seconds in commit a28605b22946 (" test-skeleton: increase default TIMEOUT to 20 seconds"). If there's no good reason to limit execution time to less than default we shouldn't specify random values. That said in tst-tzset we'll be using default 20 seconds from now on. Cc: Joseph Myers Cc: Andreas Schwab --- Changes v1 -> v2: * Rely on default timeout instead of test-specific one timezone/tst-tzset.c | 1 - 1 file changed, 1 deletion(-) diff --git a/timezone/tst-tzset.c b/timezone/tst-tzset.c index 27f986b56dab..fca704c2ad2d 100644 --- a/timezone/tst-tzset.c +++ b/timezone/tst-tzset.c @@ -25,7 +25,6 @@ #include #include -#define TIMEOUT 5 static int do_test (void); #define TEST_FUNCTION do_test () #include "../test-skeleton.c"