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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 73B2E1581F0 for ; Thu, 09 Jan 2025 10:26:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 638F6E070D; Thu, 09 Jan 2025 10:26: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 48F37E0718 for ; Thu, 09 Jan 2025 10:26:54 +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 5741433FECD for ; Thu, 09 Jan 2025 10:26:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DCEB71DD4 for ; Thu, 09 Jan 2025 10:26: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: <1736418288.2b1963196b35f6a3c31b66534b3563932ff4cfaf.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/wireshark/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/wireshark/wireshark-4.4.2-r1.ebuild net-analyzer/wireshark/wireshark-4.4.3.ebuild net-analyzer/wireshark/wireshark-9999.ebuild X-VCS-Directories: net-analyzer/wireshark/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 2b1963196b35f6a3c31b66534b3563932ff4cfaf X-VCS-Branch: master Date: Thu, 09 Jan 2025 10:26: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: db5f5e44-0158-4f01-ad17-dffe856d60c5 X-Archives-Hash: aa9c22d7f7e07aa3ad3fb3ecac60ed82 commit: 2b1963196b35f6a3c31b66534b3563932ff4cfaf Author: Holger Hoffstätte applied-asynchrony com> AuthorDate: Thu Jan 9 10:18:07 2025 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jan 9 10:24:48 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b196319 net-analyzer/wireshark: exclude failing http2 test Bug: https://gitlab.com/wireshark/wireshark/-/issues/20330 Signed-off-by: Holger Hoffstätte applied-asynchrony.com> Closes: https://github.com/gentoo/gentoo/pull/40067 Signed-off-by: Sam James gentoo.org> net-analyzer/wireshark/wireshark-4.4.2-r1.ebuild | 5 +++++ net-analyzer/wireshark/wireshark-4.4.3.ebuild | 5 +++++ net-analyzer/wireshark/wireshark-9999.ebuild | 5 +++++ 3 files changed, 15 insertions(+) diff --git a/net-analyzer/wireshark/wireshark-4.4.2-r1.ebuild b/net-analyzer/wireshark/wireshark-4.4.2-r1.ebuild index 70b917295734..5a6a17724369 100644 --- a/net-analyzer/wireshark/wireshark-4.4.2-r1.ebuild +++ b/net-analyzer/wireshark/wireshark-4.4.2-r1.ebuild @@ -253,6 +253,11 @@ src_configure() { src_test() { cmake_build test-programs + EPYTEST_DESELECT=( + # https://gitlab.com/wireshark/wireshark/-/issues/20330 + suite_sharkd.py::TestSharkd::test_sharkd_req_follow_http2 + ) + # https://www.wireshark.org/docs/wsdg_html_chunked/ChTestsRunPytest.html epytest \ --disable-capture \ diff --git a/net-analyzer/wireshark/wireshark-4.4.3.ebuild b/net-analyzer/wireshark/wireshark-4.4.3.ebuild index 7fa370c88d71..ac2883f1b6fc 100644 --- a/net-analyzer/wireshark/wireshark-4.4.3.ebuild +++ b/net-analyzer/wireshark/wireshark-4.4.3.ebuild @@ -253,6 +253,11 @@ src_configure() { src_test() { cmake_build test-programs + EPYTEST_DESELECT=( + # https://gitlab.com/wireshark/wireshark/-/issues/20330 + suite_sharkd.py::TestSharkd::test_sharkd_req_follow_http2 + ) + # https://www.wireshark.org/docs/wsdg_html_chunked/ChTestsRunPytest.html epytest \ --disable-capture \ diff --git a/net-analyzer/wireshark/wireshark-9999.ebuild b/net-analyzer/wireshark/wireshark-9999.ebuild index 7fa370c88d71..ac2883f1b6fc 100644 --- a/net-analyzer/wireshark/wireshark-9999.ebuild +++ b/net-analyzer/wireshark/wireshark-9999.ebuild @@ -253,6 +253,11 @@ src_configure() { src_test() { cmake_build test-programs + EPYTEST_DESELECT=( + # https://gitlab.com/wireshark/wireshark/-/issues/20330 + suite_sharkd.py::TestSharkd::test_sharkd_req_follow_http2 + ) + # https://www.wireshark.org/docs/wsdg_html_chunked/ChTestsRunPytest.html epytest \ --disable-capture \