]> git.ipfire.org Git - thirdparty/openssl.git/blame - test/testsslproxy
Add -d debug option to save preprocessed files.
[thirdparty/openssl.git] / test / testsslproxy
CommitLineData
a7201e9a
RL
1#! /bin/sh
2
3echo 'Testing a lot of proxy conditions.'
4echo 'Some of them may turn out being invalid, which is fine.'
5for auth in A B C BC; do
6 for cond in A B C 'A|B&!C'; do
d9bfe4f9 7 sh ./testssl $1 $2 $3 "-proxy -proxy_auth $auth -proxy_cond $cond"
97a1630e 8 if [ $? = 3 ]; then exit 1; fi
a7201e9a
RL
9 done
10done