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 0212B15811D for ; Sun, 2 Jul 2023 19:55:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 43815E077F; Sun, 2 Jul 2023 19:55:45 +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 290A4E077F for ; Sun, 2 Jul 2023 19:55:45 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3218633BF5B for ; Sun, 2 Jul 2023 19:55:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C277AA7E for ; Sun, 2 Jul 2023 19:55:42 +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: <1688327729.29cfe8fc0aa6d451979cb2966414451767d27491.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/fail2ban/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/fail2ban/fail2ban-1.0.2-r1.ebuild net-analyzer/fail2ban/fail2ban-9999.ebuild X-VCS-Directories: net-analyzer/fail2ban/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 29cfe8fc0aa6d451979cb2966414451767d27491 X-VCS-Branch: master Date: Sun, 2 Jul 2023 19:55:42 +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: bed451ce-1428-4b8d-a847-14ca84292328 X-Archives-Hash: c5d4a99bfdfe5c3e382a5b7e3e792ea2 commit: 29cfe8fc0aa6d451979cb2966414451767d27491 Author: Sam James gentoo org> AuthorDate: Sun Jul 2 19:54:41 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jul 2 19:55:29 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29cfe8fc net-analyzer/fail2ban: skip broken test Closes: https://bugs.gentoo.org/907348 Signed-off-by: Sam James gentoo.org> net-analyzer/fail2ban/fail2ban-1.0.2-r1.ebuild | 2 ++ net-analyzer/fail2ban/fail2ban-9999.ebuild | 2 ++ 2 files changed, 4 insertions(+) diff --git a/net-analyzer/fail2ban/fail2ban-1.0.2-r1.ebuild b/net-analyzer/fail2ban/fail2ban-1.0.2-r1.ebuild index 51759787dd17..9372d37e5fb4 100644 --- a/net-analyzer/fail2ban/fail2ban-1.0.2-r1.ebuild +++ b/net-analyzer/fail2ban/fail2ban-1.0.2-r1.ebuild @@ -57,9 +57,11 @@ python_compile() { } python_test() { + # Skip testRepairDb for bug #907348 (didn't always fail..) bin/fail2ban-testcases \ --no-network \ --no-gamin \ + --ignore databasetestcase.DatabaseTest.testRepairDb \ --verbosity=4 || die "Tests failed with ${EPYTHON}" # Workaround for bug #790251 diff --git a/net-analyzer/fail2ban/fail2ban-9999.ebuild b/net-analyzer/fail2ban/fail2ban-9999.ebuild index 80d515fa89e4..19d76da94cf4 100644 --- a/net-analyzer/fail2ban/fail2ban-9999.ebuild +++ b/net-analyzer/fail2ban/fail2ban-9999.ebuild @@ -50,8 +50,10 @@ python_prepare_all() { } python_test() { + # Skip testRepairDb for bug #907348 (didn't always fail..) bin/fail2ban-testcases \ --no-network \ + --ignore databasetestcase.DatabaseTest.testRepairDb \ --verbosity=4 || die "Tests failed with ${EPYTHON}" # Workaround for bug #790251