testsslproxy 291 B

12345678910
  1. #! /bin/sh
  2. echo 'Testing a lot of proxy conditions.'
  3. echo 'Some of them may turn out being invalid, which is fine.'
  4. for auth in A B C BC; do
  5. for cond in A B C 'A|B&!C'; do
  6. sh ./testssl $1 $2 $3 "-proxy -proxy_auth $auth -proxy_cond $cond"
  7. if [ $? = 3 ]; then exit 1; fi
  8. done
  9. done