2005-01-17 18:06:58 +01:00
|
|
|
#! /bin/sh
|
|
|
|
|
|
|
|
echo 'Testing a lot of proxy conditions.'
|
|
|
|
echo 'Some of them may turn out being invalid, which is fine.'
|
|
|
|
for auth in A B C BC; do
|
|
|
|
for cond in A B C 'A|B&!C'; do
|
2005-04-09 18:07:12 +02:00
|
|
|
sh ./testssl $1 $2 $3 "-proxy -proxy_auth $auth -proxy_cond $cond"
|
2005-01-27 11:59:36 +01:00
|
|
|
if [ $? = 3 ]; then exit 1; fi
|
2005-01-17 18:06:58 +01:00
|
|
|
done
|
|
|
|
done
|