blob: d1af0f5152756edcc342ac1f847a049a76592100 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
#set -x
. ../lib.sh
expect_cert "certs/xmpp.example.com.crt" "localhost:5281" "xmpp.example.com" "tls"
expect_cert "certs/example.com.crt" "localhost:5222" "example.com" "xmpp"
exit "$failures"
|