From fd487dbd8bcc41f4ef108fec9c0349be88d1a498 Mon Sep 17 00:00:00 2001 From: Kamil Godzwon Date: Mon, 3 Oct 2022 05:25:31 -0400 Subject: [PATCH] iscsi_tgt/sock.sh: comment out test with openssl ktls option enabled Do not run test with message send using hello_sock client with KTLS enabled. CI does not have systems that run with openssl-3 and KTLS and it fails under Fedora36. This test should be brought back after systems do run openssl-3 on board. Signed-off-by: Kamil Godzwon Change-Id: Id7c46ced745fb4564b7428202a902cb332d30b33 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/14830 Reviewed-by: Michal Berger Reviewed-by: Jim Harris Reviewed-by: Krzysztof Karas Reviewed-by: Tomasz Zawadzki Tested-by: SPDK CI Jenkins --- test/iscsi_tgt/sock/sock.sh | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/test/iscsi_tgt/sock/sock.sh b/test/iscsi_tgt/sock/sock.sh index 86b303d36..6d28a1170 100755 --- a/test/iscsi_tgt/sock/sock.sh +++ b/test/iscsi_tgt/sock/sock.sh @@ -157,9 +157,13 @@ if ! echo "$response" | grep -q "$message"; then fi # send message using hello_sock client with KTLS enabled -message="**MESSAGE:This is a test message from the hello_sock client with KTLS enabled**" -# UT infrastructure so far doesn't support new openssl-3 with this option, so expect a failure -echo $message | $HELLO_SOCK_APP -H $TARGET_IP -P $ISCSI_PORT $PSK -K && exit 1 + +# CI so far doesn't support new openssl-3 with this option. +# This section is commented out and will be changed back after the CI has systems that run with openssl-3 +# See GH issue #2687 + +# message="**MESSAGE:This is a test message from the hello_sock client with KTLS enabled**" +# echo $message | $HELLO_SOCK_APP -H $TARGET_IP -P $ISCSI_PORT $PSK -K # send message using openssl client using TLS 1.3 message="**MESSAGE:This is a test message from the openssl client using TLS 1.3**"