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 CF452158089 for ; Fri, 27 Oct 2023 11:40:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EFF872BC029; Fri, 27 Oct 2023 11:40:13 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 D7A3E2BC029 for ; Fri, 27 Oct 2023 11:40:13 +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 1C022335C5D for ; Fri, 27 Oct 2023 11:40:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 48FB912D3 for ; Fri, 27 Oct 2023 11:40:11 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1698406743.73c0680781c804aa71c189217ddbcde2faa63d0a.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qtbase/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-qt/qtbase/qtbase-6.5.3-r1.ebuild dev-qt/qtbase/qtbase-6.6.0-r1.ebuild dev-qt/qtbase/qtbase-6.6.9999.ebuild dev-qt/qtbase/qtbase-6.9999.ebuild X-VCS-Directories: dev-qt/qtbase/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 73c0680781c804aa71c189217ddbcde2faa63d0a X-VCS-Branch: master Date: Fri, 27 Oct 2023 11:40:11 +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: 6bcab273-8b91-4c3b-9e33-6127e387dd6c X-Archives-Hash: 7e6e98fa7835fdc97e3ae45f0c80641c commit: 73c0680781c804aa71c189217ddbcde2faa63d0a Author: Ionen Wolkens gentoo org> AuthorDate: Fri Oct 27 11:28:43 2023 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Fri Oct 27 11:39:03 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73c06807 dev-qt/qtbase: skip tst_qfiledialog{,2} regardless of musl Seems the issue I had with musl were unrelated and just random, so let's just skip it globally (along with the first one). *Could* use -j1, but qtbase has the longest test suite out of Qt package and would rather keep the extra jobs unless the issues are more widespread (as usual the tests here are more to get a baseline for regressions than for full coverage either way). Closes: https://bugs.gentoo.org/916181 Signed-off-by: Ionen Wolkens gentoo.org> dev-qt/qtbase/qtbase-6.5.3-r1.ebuild | 3 ++- dev-qt/qtbase/qtbase-6.6.0-r1.ebuild | 3 ++- dev-qt/qtbase/qtbase-6.6.9999.ebuild | 3 ++- dev-qt/qtbase/qtbase-6.9999.ebuild | 3 ++- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/dev-qt/qtbase/qtbase-6.5.3-r1.ebuild b/dev-qt/qtbase/qtbase-6.5.3-r1.ebuild index 53a15e06df37..3da4fb303ca4 100644 --- a/dev-qt/qtbase/qtbase-6.5.3-r1.ebuild +++ b/dev-qt/qtbase/qtbase-6.5.3-r1.ebuild @@ -285,6 +285,8 @@ src_test() { tst_qdnslookup # typical to lack SCTP support on non-generic kernels tst_qsctpsocket + # randomly fails without -j1, and not worth it over this (bug #916181) + tst_qfiledialog{,2} # these can be flaky depending on the environment/toolchain tst_qlogging # backtrace log test can easily vary tst_q{,raw}font # affected by available fonts / settings (bug #914737) @@ -313,7 +315,6 @@ src_test() { # partially broken on llvm-musl, needs looking into but skip to have # a baseline for regressions (rest of dev-qt still passes with musl) $(usev elibc_musl ' - tst_qfiledialog2 tst_qicoimageformat tst_qimagereader tst_qimage diff --git a/dev-qt/qtbase/qtbase-6.6.0-r1.ebuild b/dev-qt/qtbase/qtbase-6.6.0-r1.ebuild index 4a43d52dca79..2451f3f8fbda 100644 --- a/dev-qt/qtbase/qtbase-6.6.0-r1.ebuild +++ b/dev-qt/qtbase/qtbase-6.6.0-r1.ebuild @@ -287,6 +287,8 @@ src_test() { tst_qsharedmemory # typical to lack SCTP support on non-generic kernels tst_qsctpsocket + # randomly fails without -j1, and not worth it over this (bug #916181) + tst_qfiledialog{,2} # these can be flaky depending on the environment/toolchain tst_qlogging # backtrace log test can easily vary tst_q{,raw}font # affected by available fonts / settings (bug #914737) @@ -315,7 +317,6 @@ src_test() { # partially broken on llvm-musl, needs looking into but skip to have # a baseline for regressions (rest of dev-qt still passes with musl) $(usev elibc_musl ' - tst_qfiledialog2 tst_qicoimageformat tst_qimagereader tst_qimage diff --git a/dev-qt/qtbase/qtbase-6.6.9999.ebuild b/dev-qt/qtbase/qtbase-6.6.9999.ebuild index 39b3cce96928..adbaf526bcf1 100644 --- a/dev-qt/qtbase/qtbase-6.6.9999.ebuild +++ b/dev-qt/qtbase/qtbase-6.6.9999.ebuild @@ -285,6 +285,8 @@ src_test() { tst_qsharedmemory # typical to lack SCTP support on non-generic kernels tst_qsctpsocket + # randomly fails without -j1, and not worth it over this (bug #916181) + tst_qfiledialog{,2} # these can be flaky depending on the environment/toolchain tst_qlogging # backtrace log test can easily vary tst_q{,raw}font # affected by available fonts / settings (bug #914737) @@ -313,7 +315,6 @@ src_test() { # partially broken on llvm-musl, needs looking into but skip to have # a baseline for regressions (rest of dev-qt still passes with musl) $(usev elibc_musl ' - tst_qfiledialog2 tst_qicoimageformat tst_qimagereader tst_qimage diff --git a/dev-qt/qtbase/qtbase-6.9999.ebuild b/dev-qt/qtbase/qtbase-6.9999.ebuild index d039607035f3..9516155745e3 100644 --- a/dev-qt/qtbase/qtbase-6.9999.ebuild +++ b/dev-qt/qtbase/qtbase-6.9999.ebuild @@ -287,6 +287,8 @@ src_test() { tst_qsharedmemory # typical to lack SCTP support on non-generic kernels tst_qsctpsocket + # randomly fails without -j1, and not worth it over this (bug #916181) + tst_qfiledialog{,2} # these can be flaky depending on the environment/toolchain tst_qlogging # backtrace log test can easily vary tst_q{,raw}font # affected by available fonts / settings (bug #914737) @@ -315,7 +317,6 @@ src_test() { # partially broken on llvm-musl, needs looking into but skip to have # a baseline for regressions (rest of dev-qt still passes with musl) $(usev elibc_musl ' - tst_qfiledialog2 tst_qicoimageformat tst_qimagereader tst_qimage