From patchwork Thu Jan 4 21:59:14 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joseph Myers X-Patchwork-Id: 855838 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=sourceware.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=libc-alpha-return-88847-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b="CV123zdA"; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3zCMCN1t49z9s83 for ; Fri, 5 Jan 2018 08:59:27 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:to:subject:message-id:mime-version :content-type; q=dns; s=default; b=LTD9wpzE6uiHx1ijODfRFRvChRXZD tzkVLOVp9bKk5sUwmZAgw2cgjbBUfN+nbjOugNGe3ZzMe5VzNHs0eBh7N3Qbprpl Wo3ObpKWfoPgdwQGKPIuXrdXgRzHpdgNqTSbQo9rBRuKX4FwXEQjjX66bQDRDGsW W3TS2zbq3hmrjc= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:to:subject:message-id:mime-version :content-type; s=default; bh=MfAXHWKL/EhvzhHt7a9emWgmi9w=; b=CV1 23zdAgHAalgaAZcbTlE4PDnY10U3yDWhahZ/I6aLE6e0cdF6qEFNDjjguOpU8QnX agGFS2d+lDM+PfT+h+uWfNHTKl89JbjaAKkZRD4y4t0LEKuMBWemrpluRNM+nwK9 7KWAy4S8iYluFfrnJJWlaZorDJ8lezZUezCEcTOI= Received: (qmail 85290 invoked by alias); 4 Jan 2018 21:59:21 -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 85276 invoked by uid 89); 4 Jan 2018 21:59:21 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-24.5 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= X-HELO: relay1.mentorg.com Date: Thu, 4 Jan 2018 21:59:14 +0000 From: Joseph Myers To: Subject: Increase some test timeouts [committed] Message-ID: User-Agent: Alpine 2.20 (DEB 67 2015-01-07) MIME-Version: 1.0 X-ClientProxiedBy: svr-ies-mbx-01.mgc.mentorg.com (139.181.222.1) To svr-ies-mbx-01.mgc.mentorg.com (139.181.222.1) This patch increases timeouts on three tests I observed timing out on slow systems. Committed. 2018-01-04 Joseph Myers * malloc/tst-malloc-tcache-leak.c (TIMEOUT): Define to 50. * posix/tst-glob-tilde.c (TIMEOUT): Define to 200. * resolv/tst-resolv-res_ninit.c (TIMEOUT): Define to 50. diff --git a/malloc/tst-malloc-tcache-leak.c b/malloc/tst-malloc-tcache-leak.c index 02c4536..7d97314 100644 --- a/malloc/tst-malloc-tcache-leak.c +++ b/malloc/tst-malloc-tcache-leak.c @@ -109,4 +109,5 @@ do_test (void) exit (0); } +#define TIMEOUT 50 #include diff --git a/posix/tst-glob-tilde.c b/posix/tst-glob-tilde.c index 8d32b96..853b689 100644 --- a/posix/tst-glob-tilde.c +++ b/posix/tst-glob-tilde.c @@ -140,4 +140,5 @@ do_test (void) return 0; } +#define TIMEOUT 200 #include diff --git a/resolv/tst-resolv-res_ninit.c b/resolv/tst-resolv-res_ninit.c index d08d34e..46e72ab 100644 --- a/resolv/tst-resolv-res_ninit.c +++ b/resolv/tst-resolv-res_ninit.c @@ -71,4 +71,5 @@ do_test (void) return 0; } +#define TIMEOUT 50 #include