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 D939915808C for ; Thu, 28 Oct 2021 20:56:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1AC1FE091D; Thu, 28 Oct 2021 20:56:43 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F381EE091D for ; Thu, 28 Oct 2021 20:56:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 DD0F7343CB4 for ; Thu, 28 Oct 2021 20:56:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 613A8192 for ; Thu, 28 Oct 2021 20:56:38 +0000 (UTC) From: "Haelwenn Monnier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Haelwenn Monnier" Message-ID: <1635365884.d305f8170258f1d97d38eb72de3c0e899d979b02.lanodan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: sys-cluster/opencoarrays/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sys-cluster/opencoarrays/opencoarrays-2.9.2.ebuild X-VCS-Directories: sys-cluster/opencoarrays/ X-VCS-Committer: lanodan X-VCS-Committer-Name: Haelwenn Monnier X-VCS-Revision: d305f8170258f1d97d38eb72de3c0e899d979b02 X-VCS-Branch: master Date: Thu, 28 Oct 2021 20:56:38 +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: c7e75c94-f34b-43d2-82a0-99b26873c754 X-Archives-Hash: aaaf815bba6941dc2d8b530f9586b576 commit: d305f8170258f1d97d38eb72de3c0e899d979b02 Author: Sergey Torokhov yandex ru> AuthorDate: Wed Oct 27 20:15:08 2021 +0000 Commit: Haelwenn Monnier hacktivis me> CommitDate: Wed Oct 27 20:18:04 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d305f817 sys-cluster/opencoarrays: Fix MPI network testing. Re-enable tests. Add PROPERTIES="test_network" to enable network testing Signed-off-by: Sergey Torokhov yandex.ru> sys-cluster/opencoarrays/opencoarrays-2.9.2.ebuild | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/sys-cluster/opencoarrays/opencoarrays-2.9.2.ebuild b/sys-cluster/opencoarrays/opencoarrays-2.9.2.ebuild index ab7092849..eac668bef 100644 --- a/sys-cluster/opencoarrays/opencoarrays-2.9.2.ebuild +++ b/sys-cluster/opencoarrays/opencoarrays-2.9.2.ebuild @@ -20,12 +20,12 @@ LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" -#! Disable tests due for most versions of openmpi and mpich failed it with error: -#! "No network interfaces were found for out-of-band communications. -#! We require at least one available network for out-of-band messaging." -#! But tests run successfully with FEATURES="-network-sandbox" -#IUSE="test" -#RESTRICT="!test? ( test )" +# Tests fail with FEATURES="network-sandbox" for most versions of openmpi and mpich it with error: +# "No network interfaces were found for out-of-band communications. +# We require at least one available network for out-of-band messaging." +IUSE="test" +PROPERTIES="test_network" +RESTRICT="!test? ( test )" RDEPEND=" || ( >=sys-cluster/openmpi-1.10.7[fortran] >=sys-cluster/mpich-3.3[fortran] ) @@ -38,6 +38,6 @@ pkg_setup() { fortran-2_pkg_setup } -#src_test() { -# cmake_build test -#} +src_test() { + cmake_build test +}