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 27744158092 for ; Sun, 12 Jun 2022 20:36:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0636AE0959; Sun, 12 Jun 2022 20:36:54 +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 pigeon.gentoo.org (Postfix) with ESMTPS id E229BE0959 for ; Sun, 12 Jun 2022 20:36:53 +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 C91643418A3 for ; Sun, 12 Jun 2022 20:36:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1EEC7502 for ; Sun, 12 Jun 2022 20:36:51 +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: <1655066197.846291ef3b7e72d4dcf178696dbbed8830edd166.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/redis/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/redis/redis-6.0.16.ebuild X-VCS-Directories: dev-db/redis/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 846291ef3b7e72d4dcf178696dbbed8830edd166 X-VCS-Branch: master Date: Sun, 12 Jun 2022 20:36:51 +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: 284f021a-2a3b-476f-9647-5338e408068f X-Archives-Hash: b965a8284a87967b0e02b874f49ae901 commit: 846291ef3b7e72d4dcf178696dbbed8830edd166 Author: Petr Vaněk atlas cz> AuthorDate: Fri Jun 10 11:41:34 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jun 12 20:36:37 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=846291ef dev-db/redis: restrict "Active defrag*" tests only It is possible to skip selected tests by --skiptest argument passed to runtest, which is cleaner than emptying the script file. Moreover, only "Active defrag*" tests are affected, therefore we can restore "Memory efficiency*" tests which are also part of memoryefficiency unit. Signed-off-by: Petr Vaněk atlas.cz> Signed-off-by: Sam James gentoo.org> dev-db/redis/redis-6.0.16.ebuild | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/dev-db/redis/redis-6.0.16.ebuild b/dev-db/redis/redis-6.0.16.ebuild index b9de6505f930..557648cfd6f1 100644 --- a/dev-db/redis/redis-6.0.16.ebuild +++ b/dev-db/redis/redis-6.0.16.ebuild @@ -65,9 +65,6 @@ PATCHES=( src_prepare() { default - # unstable on jemalloc - > tests/unit/memefficiency.tcl || die - # Copy lua modules into build dir cp "${S}"/deps/lua/src/{fpconv,lua_bit,lua_cjson,lua_cmsgpack,lua_struct,strbuf}.c "${S}"/src || die cp "${S}"/deps/lua/src/{fpconv,strbuf}.h "${S}"/src || die @@ -135,6 +132,12 @@ src_compile() { src_test() { local runtestargs=( --clients "$(makeopts_jobs)" # see bug #649868 + + # unstable on jemalloc, see https://github.com/gentoo/gentoo/pull/15924 + --skiptest "Active defrag" + --skiptest "Active defrag big keys" + --skiptest "Active defrag big list" + --skiptest "Active defrag edge case" ) # Known to fail with FEATURES=usersandbox