This is an automated email from the ASF dual-hosted git repository.
shinrich pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new 8dce458105 Fix nc use in tls-forward-test (#10887)
8dce458105 is described below
commit 8dce45810577179229b67f2c247226764236a418
Author: Susan Hinrichs <[email protected]>
AuthorDate: Thu Nov 30 09:58:34 2023 -0600
Fix nc use in tls-forward-test (#10887)
---
tests/gold_tests/tls/test-nc-s_client.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/gold_tests/tls/test-nc-s_client.sh
b/tests/gold_tests/tls/test-nc-s_client.sh
index f08574e045..58ddaf743a 100644
--- a/tests/gold_tests/tls/test-nc-s_client.sh
+++ b/tests/gold_tests/tls/test-nc-s_client.sh
@@ -23,5 +23,5 @@ if openssl s_client --help 2>&1 | grep -q
ignore_unexpected_eof
then
ignore_unexpected_eof='-ignore_unexpected_eof'
fi
-nc -l -p "$1" -c 'echo -e "This is a reply"' -o test.out &
-echo "This is a test" | openssl s_client -servername bar.com -connect
"localhost:$2" -ign_eof ${ignore_unexpected_eof} "${@:3}"
+echo -e "This is a reply" | nc -l "$1" > test.out &
+echo "This is a test" | openssl s_client -servername bar.com -connect
"localhost:$2" -ign_eof ${ignore_unexpected_eof}