]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - crypto/openssl/test/testsslproxy
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / crypto / openssl / test / testsslproxy
1 #! /bin/sh
2
3 echo 'Testing a lot of proxy conditions.'
4 echo 'Some of them may turn out being invalid, which is fine.'
5 for auth in A B C BC; do
6     for cond in A B C 'A|B&!C'; do
7         sh ./testssl $1 $2 $3 "-proxy -proxy_auth $auth -proxy_cond $cond"
8         if [ $? = 3 ]; then exit 1; fi
9     done
10 done