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 C1245158451 for ; Sun, 14 Jan 2024 04:05:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AD6BF2BC014; Sun, 14 Jan 2024 04:05:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 972EC2BC014 for ; Sun, 14 Jan 2024 04:05:44 +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 D449F3431F7 for ; Sun, 14 Jan 2024 04:05:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C79AD14B6 for ; Sun, 14 Jan 2024 04:05:40 +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: <1705204872.0d6eeba4f18e29aa111fe08f87b03beeb9291434.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/mbedtls/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/mbedtls/mbedtls-2.28.5.ebuild net-libs/mbedtls/mbedtls-2.28.6.ebuild net-libs/mbedtls/mbedtls-3.5.1.ebuild X-VCS-Directories: net-libs/mbedtls/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 0d6eeba4f18e29aa111fe08f87b03beeb9291434 X-VCS-Branch: master Date: Sun, 14 Jan 2024 04:05:40 +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: 12a919fd-d146-4184-8ee7-3d3bbdab9178 X-Archives-Hash: 27aca0a587ca04bbe05d36c55e95e27b commit: 0d6eeba4f18e29aa111fe08f87b03beeb9291434 Author: Azamat H. Hackimov gmail com> AuthorDate: Sun Jan 7 19:58:07 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jan 14 04:01:12 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d6eeba4 net-libs/mbedtls: fix testsuite failures Appears that unittests can't be run in parallel. Closes: https://bugs.gentoo.org/914925 Closes: https://bugs.gentoo.org/718390 Closes: https://bugs.gentoo.org/829861 Signed-off-by: Azamat H. Hackimov gmail.com> Closes: https://github.com/gentoo/gentoo/pull/34702 Signed-off-by: Sam James gentoo.org> net-libs/mbedtls/mbedtls-2.28.5.ebuild | 12 +++--------- net-libs/mbedtls/mbedtls-2.28.6.ebuild | 10 +++------- net-libs/mbedtls/mbedtls-3.5.1.ebuild | 10 +++------- 3 files changed, 9 insertions(+), 23 deletions(-) diff --git a/net-libs/mbedtls/mbedtls-2.28.5.ebuild b/net-libs/mbedtls/mbedtls-2.28.5.ebuild index 2edf0c6ccf69..0ef263d1a1fe 100644 --- a/net-libs/mbedtls/mbedtls-2.28.5.ebuild +++ b/net-libs/mbedtls/mbedtls-2.28.5.ebuild @@ -71,16 +71,10 @@ multilib_src_compile() { } multilib_src_test() { - # psa isn't ready yet, it might be in 3.x(?) but certainly not - # at the moment. - # bug #718390 - CMAKE_SKIP_TESTS=( - psa_crypto - psa_its-suite - ) - + # Disable parallel run, bug #718390 + # https://github.com/Mbed-TLS/mbedtls/issues/4980 LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${BUILD_DIR}/library" \ - cmake_src_test + cmake_src_test -j1 } multilib_src_install() { diff --git a/net-libs/mbedtls/mbedtls-2.28.6.ebuild b/net-libs/mbedtls/mbedtls-2.28.6.ebuild index e1829c6a942f..f0133d22a389 100644 --- a/net-libs/mbedtls/mbedtls-2.28.6.ebuild +++ b/net-libs/mbedtls/mbedtls-2.28.6.ebuild @@ -72,14 +72,10 @@ multilib_src_compile() { } multilib_src_test() { - # Multiple failures in PSA test suite, bug #718390 - CMAKE_SKIP_TESTS=( - psa_crypto - psa_its-suite - ) - + # Disable parallel run, bug #718390 + # https://github.com/Mbed-TLS/mbedtls/issues/4980 LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${BUILD_DIR}/library" \ - cmake_src_test + cmake_src_test -j1 } multilib_src_install() { diff --git a/net-libs/mbedtls/mbedtls-3.5.1.ebuild b/net-libs/mbedtls/mbedtls-3.5.1.ebuild index 8ac4d28d6d05..963a8edbe27c 100644 --- a/net-libs/mbedtls/mbedtls-3.5.1.ebuild +++ b/net-libs/mbedtls/mbedtls-3.5.1.ebuild @@ -64,14 +64,10 @@ multilib_src_compile() { } multilib_src_test() { - # Multiple failures in PSA test suite, bug #718390 - CMAKE_SKIP_TESTS=( - psa_crypto - psa_its-suite - ) - + # Disable parallel run, bug #718390 + # https://github.com/Mbed-TLS/mbedtls/issues/4980 LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${BUILD_DIR}/library" \ - cmake_src_test + cmake_src_test -j1 } multilib_src_install() {