Remove the check in ssl-opt.sh for MAX_INTERMEDIATE_CA

The check uses grep, not config.pl, on the x509 headers - not where it should
be configured - config.h. grep syntax isn't very portable. Without config.pl
it's quite hard to do this check properly so removing this check.
This commit is contained in:
Simon Butcher 2017-07-28 13:09:27 +01:00
parent 4c338d539a
commit e513cf7f26

View File

@ -1597,24 +1597,6 @@ run_test "Authentication: client no cert, ssl3" \
-C "! ssl_handshake returned" \
-S "X509 - Certificate verification failed"
# 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" \