diff options
Diffstat (limited to 'test/security_SUITE.erl')
-rw-r--r-- | test/security_SUITE.erl | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/test/security_SUITE.erl b/test/security_SUITE.erl index a1ba916..25d5280 100644 --- a/test/security_SUITE.erl +++ b/test/security_SUITE.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2018-2024, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above @@ -49,10 +49,12 @@ groups() -> {https, [parallel], Tests ++ H1Tests}, {h2, [parallel], Tests}, {h2c, [parallel], Tests ++ H2CTests}, + {h3, [], Tests}, {http_compress, [parallel], Tests ++ H1Tests}, {https_compress, [parallel], Tests ++ H1Tests}, {h2_compress, [parallel], Tests}, - {h2c_compress, [parallel], Tests ++ H2CTests} + {h2c_compress, [parallel], Tests ++ H2CTests}, + {h3_compress, [], Tests} ]. init_per_suite(Config) -> @@ -66,7 +68,7 @@ init_per_group(Name, Config) -> cowboy_test:init_common_groups(Name, Config, ?MODULE). end_per_group(Name, _) -> - cowboy:stop_listener(Name). + cowboy_test:stop_group(Name). %% Routes. @@ -222,7 +224,7 @@ http2_empty_frame_flooding_push_promise(Config) -> http2_infinite_continuations(Config) -> doc("Confirm that Cowboy rejects CONTINUATION frames when the " - "total size of HEADERS + CONTINUATION(s) exceeds the limit."), + "total size of HEADERS + CONTINUATION(s) exceeds the limit. (VU#421644)"), {ok, Socket} = rfc7540_SUITE:do_handshake(Config), %% Send a HEADERS frame followed by a large number %% of continuation frames. |