commit: 08da6b4d3871c9c7046746e5b0daf10ca9616f2f Author: Petr Vaněk <arkamar <AT> atlas <DOT> cz> AuthorDate: Tue Jul 12 07:45:00 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> 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 <arkamar <AT> atlas.cz> Signed-off-by: Sam James <sam <AT> 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
