mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-08-03 20:54:41 +02:00
Merge branch 'master' of github.com:cyassl/cyassl
This commit is contained in:
17
client-test.sh
Executable file
17
client-test.sh
Executable file
@@ -0,0 +1,17 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# client-test.sh
|
||||||
|
|
||||||
|
[ ! -x ./examples/client/client ] && echo -e "\n\nClient doesn't exist" && exit 1
|
||||||
|
|
||||||
|
# is our desired server there?
|
||||||
|
ping -c 3 www.google.com
|
||||||
|
RESULT=$?
|
||||||
|
[ $RESULT -ne 0 ] && echo -e "\n\nCouldn't find server, skipping" && exit 0
|
||||||
|
|
||||||
|
# client test against the server
|
||||||
|
./examples/client/client -h www.google.com -p 443 -g -d -v 1
|
||||||
|
RESULT=$?
|
||||||
|
[ $RESULT -ne 0 ] && echo -e "\n\nClient connection failed" && exit 1
|
||||||
|
|
||||||
|
exit 0
|
Reference in New Issue
Block a user