From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B2A1315800F for ; Sun, 12 Feb 2023 06:22:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 91408E089C; Sun, 12 Feb 2023 06:22:11 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6C2FDE089C for ; Sun, 12 Feb 2023 06:22:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AB1A2340D68 for ; Sun, 12 Feb 2023 06:22:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A4B178AE for ; Sun, 12 Feb 2023 06:22:07 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1676182219.b234dd8bbcf255937a8357d10eaa334e68b0bd5f.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-nds/openldap/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-nds/openldap/openldap-2.6.4-r1.ebuild X-VCS-Directories: net-nds/openldap/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b234dd8bbcf255937a8357d10eaa334e68b0bd5f X-VCS-Branch: master Date: Sun, 12 Feb 2023 06:22:07 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 198904a4-17eb-454f-a237-acb61cf9cca6 X-Archives-Hash: c7f1cdb4a7c35149872f18497a32ccf2 commit: b234dd8bbcf255937a8357d10eaa334e68b0bd5f Author: Sam James gentoo org> AuthorDate: Sun Feb 12 05:56:24 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sun Feb 12 06:10:19 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b234dd8b net-nds/openldap: increase test timeouts In the past, we've seen segfaults or (IIRC) a sigbus once on timeouts, and the test in question here passes on sparc when running outside of Portage anyway. Let's give it a go. Bug: https://bugs.gentoo.org/894012 Signed-off-by: Sam James gentoo.org> net-nds/openldap/openldap-2.6.4-r1.ebuild | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/net-nds/openldap/openldap-2.6.4-r1.ebuild b/net-nds/openldap/openldap-2.6.4-r1.ebuild index 56617abc986c..51316d05feb1 100644 --- a/net-nds/openldap/openldap-2.6.4-r1.ebuild +++ b/net-nds/openldap/openldap-2.6.4-r1.ebuild @@ -642,6 +642,7 @@ multilib_src_compile() { $(tc-getCC) -shared \ -I"${BUILD_DIR}"/include \ -I../../../include \ + ${CPPFLAGS} \ ${CFLAGS} \ -fPIC \ ${LDFLAGS} \ @@ -656,6 +657,13 @@ multilib_src_test() { cd tests || die pwd + # Increase various test timeouts/delays, bug #894012 + # We can't just double everything as there's a cumulative effect. + export SLEEP0=2 # originally 1 + export SLEEP1=10 # originally 7 + export SLEEP2=20 # originally 15 + export TIMEOUT=16 # originally 8 + # emake test => runs only lloadd & mdb, in serial; skips ldif,sql,wt,regression # emake partests => runs ALL of the tests in parallel # wt/WiredTiger is not supported in Gentoo