From cc281b8a549a7bb0e0c0c8b23efaaa7699974424 Mon Sep 17 00:00:00 2001 From: Jarno Lamsa Date: Tue, 4 Jun 2019 15:21:13 +0300 Subject: [PATCH] ssl-opt.sh tests for serialization are currently using stub implementation --- tests/ssl-opt.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/ssl-opt.sh b/tests/ssl-opt.sh index c5b76640e..3a1b60f7e 100755 --- a/tests/ssl-opt.sh +++ b/tests/ssl-opt.sh @@ -1115,7 +1115,7 @@ run_test "Truncated HMAC, DTLS: client enabled, server enabled" \ # Tests for Context serialization requires_config_enabled MBEDTLS_SSL_CONTEXT_SERIALIZATION -run_test "Context serialization, client serializes/deserializes" \ +run_test "(STUB) Context serialization, client serializes/deserializes" \ "$P_SRV serialize=0 exchanges=2" \ "$P_CLI serialize=1 exchanges=2" \ 0 \ @@ -1123,7 +1123,7 @@ run_test "Context serialization, client serializes/deserializes" \ -S "Deserializing connection..." requires_config_enabled MBEDTLS_SSL_CONTEXT_SERIALIZATION -run_test "Context serialization, server serializes/deserializes" \ +run_test "(STUB) Context serialization, server serializes/deserializes" \ "$P_SRV serialize=1 exchanges=2" \ "$P_CLI serialize=0 exchanges=2" \ 0 \ @@ -1131,7 +1131,7 @@ run_test "Context serialization, server serializes/deserializes" \ -s "Deserializing connection..." requires_config_enabled MBEDTLS_SSL_CONTEXT_SERIALIZATION -run_test "Context serialization, both serialize/deserialize" \ +run_test "(STUB) Context serialization, both serialize/deserialize" \ "$P_SRV serialize=1 exchanges=2" \ "$P_CLI serialize=1 exchanges=2" \ 0 \