Check value of POLARSSL_X509_MAX_INTERMEDIATE_CA in ssl-opt.sh

Some tests in ssl-opt.sh assumes the value 8 for the maximal number
POLARSSL_X509_MAX_INTERMEDIATE_CA of intermediate CA's. This commit
adds a check before conducting the respective tests.
This commit is contained in:
Hanno Becker 2017-07-27 15:19:40 +01:00 committed by Simon Butcher
parent 2625f4aa93
commit 5a0ea97cfb

View file

@ -1599,6 +1599,22 @@ run_test "Authentication: client no cert, ssl3" \
# The "max_int chain" tests assume that MAX_INTERMEDIATE_CA is set to its
# default value (8)
MAX_IM_CA=8
MAX_IM_CA_REGEX="#define[[:blank:]]\+POLARSSL_X509_MAX_INTERMEDIATE_CA"
MAX_IM_CA_REGEX="${MAX_IM_CA_REGEX}[[:blank:]]\+${MAX_IM_CA}[[:blank:]]*$"
if grep "${MAX_IM_CA_REGEX}" ../include/polarssl/x509.h > /dev/null;
then :;
else
echo "$(echo 'The tests for long intermediate chains assume the value' \
${MAX_IM_CA} 'for POLARSSL_X509_MAX_INTERMEDIATE_CA.' \
'To test other values, please manually adapt the max_int' \
'tests in ssl-opt.sh.')"
return
fi
run_test "Authentication: server max_int chain, client default" \
"$P_SRV crt_file=data_files/dir-maxpath/c09.pem \
key_file=data_files/dir-maxpath/09.key" \