From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A193B1584AD for ; Sat, 26 Apr 2025 19:51:25 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 5C3543430BF for ; Sat, 26 Apr 2025 19:51:25 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 5341C1102A2; Sat, 26 Apr 2025 19:51:24 +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)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 4C38C1102A2 for ; Sat, 26 Apr 2025 19:51:24 +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 DE7B334308F for ; Sat, 26 Apr 2025 19:51:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4FABBC3A for ; Sat, 26 Apr 2025 19:51:22 +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: <1745697030.65276a07be46e1b4dfe44c48008bcb255bbb1ad1.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/gdal/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/gdal/gdal-3.9.3.ebuild X-VCS-Directories: sci-libs/gdal/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 65276a07be46e1b4dfe44c48008bcb255bbb1ad1 X-VCS-Branch: master Date: Sat, 26 Apr 2025 19:51:22 +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: 1e330cb7-657d-4353-9865-ba91bd7bf075 X-Archives-Hash: dce4c42681abb20f0658e5d45c88aaf8 commit: 65276a07be46e1b4dfe44c48008bcb255bbb1ad1 Author: Alfred Wingate protonmail com> AuthorDate: Fri Apr 25 23:24:48 2025 +0000 Commit: Sam James gentoo org> CommitDate: Sat Apr 26 19:50:30 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65276a07 sci-libs/gdal: skip non working tests Signed-off-by: Alfred Wingate protonmail.com> Part-of: https://github.com/gentoo/gentoo/pull/41775 Signed-off-by: Sam James gentoo.org> sci-libs/gdal/gdal-3.9.3.ebuild | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/sci-libs/gdal/gdal-3.9.3.ebuild b/sci-libs/gdal/gdal-3.9.3.ebuild index 922356db4b67..666d81dedcc8 100644 --- a/sci-libs/gdal/gdal-3.9.3.ebuild +++ b/sci-libs/gdal/gdal-3.9.3.ebuild @@ -258,8 +258,19 @@ src_test() { # 1. autotests (much larger, uses pytest) # 2. Small set of fuzzing tests (no download needed) - # Missing file for test-unit? - cmake_src_test -E "(test-unit)" + CMAKE_SKIP_TESTS=( + # Missing file for test-unit? + "test-unit" + # requires pytest-benchmark + "autotest_benchmark" + # network sandbox + # TODO: granularly skip network sandbox breaking tests? + "autotest_gcore" + "autotest_gdrivers" + "autotest_utilities" + ) + + cmake_src_test } src_install() {