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 226F1158B20 for ; Sun, 02 Feb 2025 12:54:05 +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 E8F913430A3 for ; Sun, 02 Feb 2025 12:54:04 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 38D8F110471; Sun, 02 Feb 2025 12:54:00 +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 2EB1B110471 for ; Sun, 02 Feb 2025 12:54:00 +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 D736D343023 for ; Sun, 02 Feb 2025 12:53:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3E52E2532 for ; Sun, 02 Feb 2025 12:53:58 +0000 (UTC) From: "Guilherme Amadio" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Guilherme Amadio" Message-ID: <1738500816.bd5c20cc7495fbc5d3d0331be7f9ce3a5078c9ec.amadio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/rocksdb/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/rocksdb/rocksdb-7.9.2-r1.ebuild dev-libs/rocksdb/rocksdb-8.11.3.ebuild X-VCS-Directories: dev-libs/rocksdb/ X-VCS-Committer: amadio X-VCS-Committer-Name: Guilherme Amadio X-VCS-Revision: bd5c20cc7495fbc5d3d0331be7f9ce3a5078c9ec X-VCS-Branch: master Date: Sun, 02 Feb 2025 12:53:58 +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: 0441f9c2-07cf-44e6-8d04-358953f24000 X-Archives-Hash: 09da61a8c045799545584d8509bf7f03 commit: bd5c20cc7495fbc5d3d0331be7f9ce3a5078c9ec Author: Guilherme Amadio gentoo org> AuthorDate: Sun Feb 2 12:52:05 2025 +0000 Commit: Guilherme Amadio gentoo org> CommitDate: Sun Feb 2 12:53:36 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd5c20cc dev-libs/rocksdb: skip tests which fail on tmpfs Closes: https://bugs.gentoo.org/942984 Closes: https://bugs.gentoo.org/948931 Closes: https://bugs.gentoo.org/948932 Signed-off-by: Guilherme Amadio gentoo.org> dev-libs/rocksdb/rocksdb-7.9.2-r1.ebuild | 12 +++++++++++- dev-libs/rocksdb/rocksdb-8.11.3.ebuild | 13 ++++++++++++- 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/dev-libs/rocksdb/rocksdb-7.9.2-r1.ebuild b/dev-libs/rocksdb/rocksdb-7.9.2-r1.ebuild index 6cfd8ad17742..40a3cd3cefa5 100644 --- a/dev-libs/rocksdb/rocksdb-7.9.2-r1.ebuild +++ b/dev-libs/rocksdb/rocksdb-7.9.2-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 2020-2024 Gentoo Authors +# Copyright 2020-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -77,3 +77,13 @@ src_install() { rm "${ED}"/usr/$(get_libdir)/*.a || die fi } + +src_test() { + CMAKE_SKIP_TESTS=( + OptionsSettableTest.ColumnFamilyOptionsAllFieldsSettable + # skip tests that don't work on tmpfs, bugs 942984, 948931 + EnvPosixTest + FilePrefetchBufferTest + ) + cmake_src_test +} diff --git a/dev-libs/rocksdb/rocksdb-8.11.3.ebuild b/dev-libs/rocksdb/rocksdb-8.11.3.ebuild index 8221a61c5b6a..26d7bdeb7c50 100644 --- a/dev-libs/rocksdb/rocksdb-8.11.3.ebuild +++ b/dev-libs/rocksdb/rocksdb-8.11.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 2020-2024 Gentoo Authors +# Copyright 2020-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -78,3 +78,14 @@ src_install() { rm "${ED}"/usr/$(get_libdir)/*.a || die fi } + +src_test() { + CMAKE_SKIP_TESTS=( + OptionsSettableTest.ColumnFamilyOptionsAllFieldsSettable + # skip tests that don't work on tmpfs, bug 948932 + DBTestTailingIterator + PrefetchTest + PrefetchTest1 + ) + cmake_src_test +}