From patchwork Sat Mar 23 20:00:22 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Philippe Waroquiers X-Patchwork-Id: 31954 Received: (qmail 17147 invoked by alias); 23 Mar 2019 20:00:49 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 16076 invoked by uid 89); 23 Mar 2019 20:00:42 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-22.7 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.1 spammy=HX-Languages-Length:836, timer, HContent-Transfer-Encoding:8bit X-HELO: mailsec119.isp.belgacom.be Received: from mailsec119.isp.belgacom.be (HELO mailsec119.isp.belgacom.be) (195.238.20.115) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 23 Mar 2019 20:00:41 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=skynet.be; i=@skynet.be; q=dns/txt; s=securemail; t=1553371241; x=1584907241; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=G3gwD+fLRgh+pKJ9nD2bQWjPADGshOilTbhOoK2pZZA=; b=VQ/PUWOVOdmII+XxXBbsmDz4jSLpOc8L8SWqCAfdH8lqTudZoB1TOMat 52vbWZWe1wvrKgR27mASL4qW2HM95w==; Received: from unknown (HELO md.home) ([109.130.122.147]) by relay.skynet.be with ESMTP/TLS/DHE-RSA-AES128-GCM-SHA256; 23 Mar 2019 21:00:28 +0100 From: Philippe Waroquiers To: gdb-patches@sourceware.org Cc: Philippe Waroquiers Subject: [RFA 3/3] Fix gdb.multi/multi-term-settings.exp blocking under high load/slow gdb Date: Sat, 23 Mar 2019 21:00:22 +0100 Message-Id: <20190323200022.28689-4-philippe.waroquiers@skynet.be> In-Reply-To: <20190323200022.28689-1-philippe.waroquiers@skynet.be> References: <20190323200022.28689-1-philippe.waroquiers@skynet.be> MIME-Version: 1.0 X-IsSubscribed: yes Similarly to multi-arch-exec.exp, increase the alarm timer to avoid test blocking under high load or with a slow gdb. 2019-03-23 Philippe Waroquiers * gdb.multi/multi-term-settings.c (main): Increase alarm timer. --- gdb/testsuite/gdb.multi/multi-term-settings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdb/testsuite/gdb.multi/multi-term-settings.c b/gdb/testsuite/gdb.multi/multi-term-settings.c index 6b115cccad..17be6ea4e7 100644 --- a/gdb/testsuite/gdb.multi/multi-term-settings.c +++ b/gdb/testsuite/gdb.multi/multi-term-settings.c @@ -31,7 +31,7 @@ main () /* In case we inherit SIG_IGN. */ signal (SIGTTOU, SIG_DFL); - alarm (30); + alarm (240); int count = 0; while (1)