From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1376414-garchives=archives.gentoo.org@lists.gentoo.org> 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 EE7C315808B for <garchives@archives.gentoo.org>; Wed, 16 Mar 2022 21:54:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0FAA2E0869; Wed, 16 Mar 2022 21:54:31 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 91B29E0869 for <gentoo-commits@lists.gentoo.org>; Wed, 16 Mar 2022 21:54:30 +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 6A25934354E for <gentoo-commits@lists.gentoo.org>; Wed, 16 Mar 2022 21:54:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8BDD3AF for <gentoo-commits@lists.gentoo.org>; Wed, 16 Mar 2022 21:54:27 +0000 (UTC) From: "Sam James" <sam@gentoo.org> 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" <sam@gentoo.org> Message-ID: <1647467545.2661c867b5cf47e49bed24b40607b39b8a4c966a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-apps/libkgapi/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-apps/libkgapi/libkgapi-21.12.3.ebuild X-VCS-Directories: kde-apps/libkgapi/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 2661c867b5cf47e49bed24b40607b39b8a4c966a X-VCS-Branch: master Date: Wed, 16 Mar 2022 21:54:27 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: cb41cd08-d6fd-4b3f-9428-4b0aae986c44 X-Archives-Hash: dfc07a19469c939e8148ffe1861530ba commit: 2661c867b5cf47e49bed24b40607b39b8a4c966a Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Wed Mar 16 21:52:25 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Wed Mar 16 21:52:25 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2661c867 kde-apps/libkgapi: skip buggy tests We want to report these failures upstream but I didn't think ahead and upgraded to newer Qt 5.15.3 (not yet in wider distribution yet in Gentoo) and some of the newer failures I hit may be attributed to that. So, let's skip them for now, and circle back. Other distros (Exherbo, Alpine) are hitting these failures anyway so we know it's not Gentoo-specific. Bug: https://bugs.gentoo.org/832709 Signed-off-by: Sam James <sam <AT> gentoo.org> kde-apps/libkgapi/libkgapi-21.12.3.ebuild | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/kde-apps/libkgapi/libkgapi-21.12.3.ebuild b/kde-apps/libkgapi/libkgapi-21.12.3.ebuild index cd70cf990abc..cb1ee520c959 100644 --- a/kde-apps/libkgapi/libkgapi-21.12.3.ebuild +++ b/kde-apps/libkgapi/libkgapi-21.12.3.ebuild @@ -31,3 +31,15 @@ DEPEND=" >=kde-frameworks/kwallet-${KFMIN}:5 " RDEPEND="${DEPEND}" + +src_test() { + local myctestargs=( + # Both fail for multiple distros, see bug #832709 for more discussion + # Revisit at least once Qt 5.15.3 is in wider distribution (in Gentoo at least): + # - contacts-contactcreatejobtest + # - contacts-contactmodifyjobtest + -E "(contacts-contactcreatejobtest|contacts-contactmodifyjobtest" + ) + + virtx cmake_src_test +}