commit: 03dccf985a33a6a4b8721a2b0837ce9c39e1f989 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: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 <sam <AT> 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 +} +
