summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2024-04-08 15:12:24 +0100
committerHugo Landau <hlandau@openssl.org>2024-04-19 09:33:53 +0100
commitb68f067c7e637b04d2adfbb80894e58e8037ecaa (patch)
tree250f8334b3488c98e51fef12f1b808b2c5b80bc8
parent366c53cf1a6fb1d67c8103e6b8ec450acf53607d (diff)
QUIC RADIX: Fix simple_conn test
Reviewed-by: Neil Horman <nhorman@openssl.org> Reviewed-by: Paul Dale <ppzgs1@gmail.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/24064)
-rw-r--r--test/radix/quic_tests.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/radix/quic_tests.c b/test/radix/quic_tests.c
index 4f4c9118af..001105a5a7 100644
--- a/test/radix/quic_tests.c
+++ b/test/radix/quic_tests.c
@@ -20,6 +20,7 @@ DEF_SCRIPT(simple_conn, "simple connection to server")
OP_ACCEPT_CONN_WAIT(L, La, 0);
OP_ACCEPT_CONN_NONE(L);
+ OP_READ_EXPECT_B(La, "apple");
OP_WRITE_B(La, "orange");
OP_READ_EXPECT_B(C, "orange");
}