Fixup multistream test

Reviewed-by: Neil Horman <nhorman@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/23360)
This commit is contained in:
Hugo Landau 2024-02-02 09:14:26 +00:00
parent 07e66f3c3d
commit 37228ded0f
1 changed files with 5 additions and 4 deletions

View File

@ -5342,7 +5342,7 @@ static const struct script_op script_83[] = {
OP_END
};
/* 83. Test query of available streams */
/* 84. Test query of available streams */
static int check_avail_streams(struct helper *h, struct helper_local *hl)
{
uint64_t v = 0;
@ -5374,7 +5374,7 @@ static int check_avail_streams(struct helper *h, struct helper_local *hl)
return 1;
}
static const struct script_op script_83[] = {
static const struct script_op script_84[] = {
OP_C_SET_ALPN ("ossltest")
OP_C_CONNECT_WAIT ()
@ -5504,10 +5504,11 @@ static const struct script_op *const scripts[] = {
script_77,
script_78,
script_79,
script_80
script_80,
script_81,
script_82,
script_83
script_83,
script_84
};
static int test_script(int idx)