From 864dec30a3971aa043dd47f99168c889a5107102 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 5 Aug 2024 11:15:52 +0200 Subject: Adding upstream version 4.2.6. Signed-off-by: Daniel Baumann --- test/suite_sharkd.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'test') diff --git a/test/suite_sharkd.py b/test/suite_sharkd.py index 9d883647..56744d40 100644 --- a/test/suite_sharkd.py +++ b/test/suite_sharkd.py @@ -1157,7 +1157,13 @@ class TestSharkd: }, )) - def test_sharkd_req_follow_http2(self, check_sharkd_session, capture_file): + def test_sharkd_req_follow_http2(self, check_sharkd_session, capture_file, features): + # If we don't have nghttp2, we output the compressed headers. + # We could test against the expected output in that case, but + # just skip for now. + if not features.have_nghttp2: + pytest.skip('Requires nghttp2.') + check_sharkd_session(( {"jsonrpc":"2.0", "id":1, "method":"load", "params":{"file": capture_file('quic-with-secrets.pcapng')} -- cgit v1.2.3