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 E3DA2158089 for ; Tue, 19 Sep 2023 03:02:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 16A732BC04C; Tue, 19 Sep 2023 03:02:56 +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 EE1472BC04C for ; Tue, 19 Sep 2023 03:02:55 +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 B676B335C67 for ; Tue, 19 Sep 2023 03:02:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DC76411D6 for ; Tue, 19 Sep 2023 03:02:52 +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: <1695089537.9766b6fde49e48247ac9b11b2d52a4b615833c99.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.2-r2.ebuild dev-qt/qtbase/qtbase-6.5.9999.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: 9766b6fde49e48247ac9b11b2d52a4b615833c99 X-VCS-Branch: master Date: Tue, 19 Sep 2023 03:02:52 +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: 0e638c15-5f38-4fa1-a3ea-702475441302 X-Archives-Hash: fe636a4e8a1aba69f61eb6e6db835577 commit: 9766b6fde49e48247ac9b11b2d52a4b615833c99 Author: Ionen Wolkens gentoo org> AuthorDate: Tue Sep 19 02:12:07 2023 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Tue Sep 19 02:12:17 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9766b6fd dev-qt/qtbase: skip known failing tests on BE arches Could use looking into eventually, but these failures should not have much of an impact. Skipping globally to avoid coming back to this with other arches. Bug: https://bugs.gentoo.org/914033 Bug: https://bugs.gentoo.org/914371 Signed-off-by: Ionen Wolkens gentoo.org> dev-qt/qtbase/qtbase-6.5.2-r2.ebuild | 6 +++++- dev-qt/qtbase/qtbase-6.5.9999.ebuild | 6 +++++- dev-qt/qtbase/qtbase-6.6.9999.ebuild | 6 +++++- dev-qt/qtbase/qtbase-6.9999.ebuild | 6 +++++- 4 files changed, 20 insertions(+), 4 deletions(-) diff --git a/dev-qt/qtbase/qtbase-6.5.2-r2.ebuild b/dev-qt/qtbase/qtbase-6.5.2-r2.ebuild index 63c5ac446ad4..06bb9118196a 100644 --- a/dev-qt/qtbase/qtbase-6.5.2-r2.ebuild +++ b/dev-qt/qtbase/qtbase-6.5.2-r2.ebuild @@ -296,9 +296,13 @@ src_test() { tst_qglyphrun tst_qvectornd tst_rcc - # similarly, but on armv7 (bug #914028) + # similarly, but on armv7 and potentially others (bug #914028) tst_qlineedit tst_qpainter + # likewise, known failing at least on BE arches (bug #914033,914371) + tst_qimagereader + tst_qimagewriter + tst_qpluginloader # partially broken on llvm-musl, needs looking into but skip to have # a baseline for regressions (like above, rest of dev-qt is fine) $(usev elibc_musl ' diff --git a/dev-qt/qtbase/qtbase-6.5.9999.ebuild b/dev-qt/qtbase/qtbase-6.5.9999.ebuild index c6249d69533c..137c9f694949 100644 --- a/dev-qt/qtbase/qtbase-6.5.9999.ebuild +++ b/dev-qt/qtbase/qtbase-6.5.9999.ebuild @@ -294,9 +294,13 @@ src_test() { tst_qglyphrun tst_qvectornd tst_rcc - # similarly, but on armv7 (bug #914028) + # similarly, but on armv7 and potentially others (bug #914028) tst_qlineedit tst_qpainter + # likewise, known failing at least on BE arches (bug #914033,914371) + tst_qimagereader + tst_qimagewriter + tst_qpluginloader # partially broken on llvm-musl, needs looking into but skip to have # a baseline for regressions (like above, rest of dev-qt is fine) $(usev elibc_musl ' diff --git a/dev-qt/qtbase/qtbase-6.6.9999.ebuild b/dev-qt/qtbase/qtbase-6.6.9999.ebuild index 8502d419a9b4..58bf530a1d11 100644 --- a/dev-qt/qtbase/qtbase-6.6.9999.ebuild +++ b/dev-qt/qtbase/qtbase-6.6.9999.ebuild @@ -294,9 +294,13 @@ src_test() { tst_qglyphrun tst_qvectornd tst_rcc - # similarly, but on armv7 (bug #914028) + # similarly, but on armv7 and potentially others (bug #914028) tst_qlineedit tst_qpainter + # likewise, known failing at least on BE arches (bug #914033,914371) + tst_qimagereader + tst_qimagewriter + tst_qpluginloader # partially broken on llvm-musl, needs looking into but skip to have # a baseline for regressions (like above, rest of dev-qt is fine) $(usev elibc_musl ' diff --git a/dev-qt/qtbase/qtbase-6.9999.ebuild b/dev-qt/qtbase/qtbase-6.9999.ebuild index 5f0ad59133f0..becc650ea1ce 100644 --- a/dev-qt/qtbase/qtbase-6.9999.ebuild +++ b/dev-qt/qtbase/qtbase-6.9999.ebuild @@ -297,9 +297,13 @@ src_test() { tst_qglyphrun tst_qvectornd tst_rcc - # similarly, but on armv7 (bug #914028) + # similarly, but on armv7 and potentially others (bug #914028) tst_qlineedit tst_qpainter + # likewise, known failing at least on BE arches (bug #914033,914371) + tst_qimagereader + tst_qimagewriter + tst_qpluginloader # partially broken on llvm-musl, needs looking into but skip to have # a baseline for regressions (like above, rest of dev-qt is fine) $(usev elibc_musl '