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 7B43C158083 for ; Wed, 25 Sep 2024 21:21:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6D602E2B23; Wed, 25 Sep 2024 21:21:08 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5052AE2B23 for ; Wed, 25 Sep 2024 21:21:08 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 508F33430EC for ; Wed, 25 Sep 2024 21:21:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BBEE21ACF for ; Wed, 25 Sep 2024 21:21:05 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1727299247.e5a439ef0f2c9dc839deee6197d97d0f2f4c0ed1.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libssh/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libssh/libssh-0.10.6-r1.ebuild net-libs/libssh/libssh-9999.ebuild X-VCS-Directories: net-libs/libssh/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: e5a439ef0f2c9dc839deee6197d97d0f2f4c0ed1 X-VCS-Branch: master Date: Wed, 25 Sep 2024 21:21:05 +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: b37359c7-cfa6-4acc-9ff2-5e0e881decdf X-Archives-Hash: 39aaf732f330ec58feb7ff0004076529 commit: e5a439ef0f2c9dc839deee6197d97d0f2f4c0ed1 Author: Matoro Mahri matoro tk> AuthorDate: Wed Sep 25 05:34:33 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Sep 25 21:20:47 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5a439ef net-libs/libssh: crank up test timeouts Bug: https://bugs.gentoo.org/935899 Signed-off-by: Matoro Mahri matoro.tk> Closes: https://github.com/gentoo/gentoo/pull/38766 Signed-off-by: Andreas Sturmlechner gentoo.org> net-libs/libssh/libssh-0.10.6-r1.ebuild | 4 ++++ net-libs/libssh/libssh-9999.ebuild | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/net-libs/libssh/libssh-0.10.6-r1.ebuild b/net-libs/libssh/libssh-0.10.6-r1.ebuild index f2253fff3b59..2890c24fa814 100644 --- a/net-libs/libssh/libssh-0.10.6-r1.ebuild +++ b/net-libs/libssh/libssh-0.10.6-r1.ebuild @@ -118,6 +118,10 @@ multilib_src_compile() { multilib_is_native_abi && use doc && cmake_src_compile docs } +multilib_src_test() { + cmake_src_test --timeout 3000 +} + multilib_src_install() { cmake_src_install multilib_is_native_abi && use doc && local HTML_DOCS=( "${BUILD_DIR}"/doc/html/. ) diff --git a/net-libs/libssh/libssh-9999.ebuild b/net-libs/libssh/libssh-9999.ebuild index 88efb91ea9b8..efb21e5e77c1 100644 --- a/net-libs/libssh/libssh-9999.ebuild +++ b/net-libs/libssh/libssh-9999.ebuild @@ -113,6 +113,10 @@ multilib_src_compile() { multilib_is_native_abi && use doc && cmake_src_compile docs } +multilib_src_test() { + cmake_src_test --timeout 3000 +} + multilib_src_install() { cmake_src_install multilib_is_native_abi && use doc && local HTML_DOCS=( "${BUILD_DIR}"/doc/html/. )