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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 87C2E158086 for ; Fri, 26 Nov 2021 04:13:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B5E95E07D1; Fri, 26 Nov 2021 04:13:03 +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 454ECE07D1 for ; Fri, 26 Nov 2021 04:13:03 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9B414342D73 for ; Fri, 26 Nov 2021 04:13:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 205DF1C6 for ; Fri, 26 Nov 2021 04:13:00 +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: <1637899956.f16181a97c2031836ca26bd1d22550d511982b39.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/kokkos/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/kokkos/kokkos-3.1.01-r1.ebuild X-VCS-Directories: dev-cpp/kokkos/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: f16181a97c2031836ca26bd1d22550d511982b39 X-VCS-Branch: master Date: Fri, 26 Nov 2021 04:13:00 +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: a6641ded-9f2d-47fe-97fe-3c7a3f729789 X-Archives-Hash: b570b3d8806c1151a1edd2d258b46643 commit: f16181a97c2031836ca26bd1d22550d511982b39 Author: Sam James gentoo org> AuthorDate: Fri Nov 26 04:12:36 2021 +0000 Commit: Sam James gentoo org> CommitDate: Fri Nov 26 04:12:36 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f16181a9 dev-cpp/kokkos: skip "death tests" They're known to fail and it's holding up stabilisation on a non-regression. Closes: https://bugs.gentoo.org/722608 Signed-off-by: Sam James gentoo.org> dev-cpp/kokkos/kokkos-3.1.01-r1.ebuild | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/dev-cpp/kokkos/kokkos-3.1.01-r1.ebuild b/dev-cpp/kokkos/kokkos-3.1.01-r1.ebuild index 8f64a19d12e7..24d979c98647 100644 --- a/dev-cpp/kokkos/kokkos-3.1.01-r1.ebuild +++ b/dev-cpp/kokkos/kokkos-3.1.01-r1.ebuild @@ -41,3 +41,14 @@ src_configure() { cmake_src_configure } + +src_test() { + local myctestargs=( + # Contains "death tests" which are known/expected(?) to fail + # https://github.com/kokkos/kokkos/issues/3033 + # bug #791514 + -E "(KokkosCore_UnitTest_OpenMP|KokkosCore_UnitTest_Serial)" + ) + + cmake_src_test +}