21 lines
492 B
Plaintext
21 lines
492 B
Plaintext
![]() |
#!/bin/bash
|
||
|
|
||
|
# external.test
|
||
|
|
||
|
server=www.wolfssl.com
|
||
|
ca=./certs/wolfssl-website-ca.pem
|
||
|
|
||
|
[ ! -x ./examples/client/client ] && echo -e "\n\nClient doesn't exist" && exit 1
|
||
|
|
||
|
# is our desired server there?
|
||
|
ping -c 2 -i 0.2 $server
|
||
|
RESULT=$?
|
||
|
[ $RESULT -ne 0 ] && echo -e "\n\nCouldn't find $server, skipping" && exit 0
|
||
|
|
||
|
# client test against the server
|
||
|
./examples/client/client -C -h $server -p 443 -g -A $ca
|
||
|
RESULT=$?
|
||
|
[ $RESULT -ne 0 ] && echo -e "\n\nClient connection failed" && exit 1
|
||
|
|
||
|
exit 0
|