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 287FE158094 for ; Tue, 12 Jul 2022 08:57:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 45455E0D30; Tue, 12 Jul 2022 08:57:15 +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 1B7B5E0D30 for ; Tue, 12 Jul 2022 08:57:15 +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 0B2B4340FE7 for ; Tue, 12 Jul 2022 08:57:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D229B500 for ; Tue, 12 Jul 2022 08:57:09 +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: <1657616221.08da6b4d3871c9c7046746e5b0daf10ca9616f2f.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-7.0.1-r1.ebuild dev-db/redis/redis-7.0.2.ebuild X-VCS-Directories: dev-db/redis/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 08da6b4d3871c9c7046746e5b0daf10ca9616f2f X-VCS-Branch: master Date: Tue, 12 Jul 2022 08:57:09 +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: 599fed95-7d9e-4f4b-ab9b-5ab63c12510e X-Archives-Hash: 13ec0ea5d022453473a00cfd233365e9 commit: 08da6b4d3871c9c7046746e5b0daf10ca9616f2f Author: Petr Vaněk atlas cz> AuthorDate: Tue Jul 12 07:45:00 2022 +0000 Commit: Sam James gentoo org> CommitDate: Tue Jul 12 08:57:01 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08da6b4d dev-db/redis: Disable "Active defrag eval scripts" test in redis-7* This test was introduced in upstream PR [1], but it fails in some situations, like when the src_test phase is run in a container. At least this is where I was able to reproduce it. [1] https://github.com/redis/redis/pull/10271 Closes: https://bugs.gentoo.org/851654 Signed-off-by: Petr Vaněk atlas.cz> Signed-off-by: Sam James gentoo.org> dev-db/redis/redis-7.0.1-r1.ebuild | 2 ++ dev-db/redis/redis-7.0.2.ebuild | 2 ++ 2 files changed, 4 insertions(+) diff --git a/dev-db/redis/redis-7.0.1-r1.ebuild b/dev-db/redis/redis-7.0.1-r1.ebuild index f43853ced40b..2fdb9e772f89 100644 --- a/dev-db/redis/redis-7.0.1-r1.ebuild +++ b/dev-db/redis/redis-7.0.1-r1.ebuild @@ -117,6 +117,8 @@ src_compile() { src_test() { local runtestargs=( --clients "$(makeopts_jobs)" # see bug #649868 + + --skiptest "Active defrag eval scripts" # see bug #851654 ) if has usersandbox ${FEATURES} || ! has userpriv ${FEATURES}; then diff --git a/dev-db/redis/redis-7.0.2.ebuild b/dev-db/redis/redis-7.0.2.ebuild index 3e4ee296d8aa..9ab76d9dd7cc 100644 --- a/dev-db/redis/redis-7.0.2.ebuild +++ b/dev-db/redis/redis-7.0.2.ebuild @@ -117,6 +117,8 @@ src_compile() { src_test() { local runtestargs=( --clients "$(makeopts_jobs)" # see bug #649868 + + --skiptest "Active defrag eval scripts" # see bug #851654 ) if has usersandbox ${FEATURES} || ! has userpriv ${FEATURES}; then