summaryrefslogtreecommitdiff
path: root/test/regression/interoperability_test/nx_secure_test/test_scripts/openssl_echo_client.sh
blob: 5a2f4f690d36390e2e99c4b563373a3c57fcb1e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash
##############################################################################
# Copyright (c) 2024 Microsoft Corporation
# Copyright (c) 2026 Eclipse ThreadX contributors
#
# This program and the accompanying materials are made available under the
# terms of the MIT License which is available at
# https://opensource.org/licenses/MIT.
#
# SPDX-License-Identifier: MIT
##############################################################################


date
#Show script name.
echo $0 $@

arg1=$1
arg2=$2
shift 2

cd "$( dirname "$0" )"
echo "hello" | openssl s_client -connect "$arg1":"$arg2" -ign_eof $@