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 C14CA15808B for ; Wed, 16 Mar 2022 21:55:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D77CCE0869; Wed, 16 Mar 2022 21:55:29 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 758CBE0869 for ; Wed, 16 Mar 2022 21:55:29 +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 73077343606 for ; Wed, 16 Mar 2022 21:55:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 88355AF for ; Wed, 16 Mar 2022 21:55:26 +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: <1647467711.03dccf985a33a6a4b8721a2b0837ce9c39e1f989.sam@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-apps/libkgapi/ X-VCS-Repository: proj/kde X-VCS-Files: kde-apps/libkgapi/libkgapi-9999.ebuild X-VCS-Directories: kde-apps/libkgapi/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 03dccf985a33a6a4b8721a2b0837ce9c39e1f989 X-VCS-Branch: master Date: Wed, 16 Mar 2022 21:55:26 +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: 9c428c2b-7cba-4e78-a144-9966a963a69c X-Archives-Hash: f27b38992128a10285b047c9dd07d553 commit: 03dccf985a33a6a4b8721a2b0837ce9c39e1f989 Author: Sam James gentoo org> AuthorDate: Wed Mar 16 21:52:25 2022 +0000 Commit: Sam James gentoo org> CommitDate: Wed Mar 16 21:55:11 2022 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=03dccf98 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 gentoo.org> kde-apps/libkgapi/libkgapi-9999.ebuild | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/kde-apps/libkgapi/libkgapi-9999.ebuild b/kde-apps/libkgapi/libkgapi-9999.ebuild index e4457f4527..c79e784073 100644 --- a/kde-apps/libkgapi/libkgapi-9999.ebuild +++ b/kde-apps/libkgapi/libkgapi-9999.ebuild @@ -31,3 +31,16 @@ 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 +} +