diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-08-05 09:15:52 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-08-05 09:15:52 +0000 |
commit | 864dec30a3971aa043dd47f99168c889a5107102 (patch) | |
tree | dd322ea42bd05d24614f2f22afc75bc49cbb0b34 /test | |
parent | Adding upstream version 4.2.5. (diff) | |
download | wireshark-upstream/4.2.6.tar.xz wireshark-upstream/4.2.6.zip |
Adding upstream version 4.2.6.upstream/4.2.6
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | test/suite_sharkd.py | 8 |
1 files changed, 7 insertions, 1 deletions
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')} |