From 920b77524d1e83fb6bf6c4ea3e5316809fee27a6 Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Wed, 26 Feb 2020 19:49:58 +0100 Subject: [PATCH] Revert "recursion.pl: Don't depend on X.509" This reverts commit e23737c618e93c99143bbe8343f3df4c4888ddc8. --- tests/scripts/recursion.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/scripts/recursion.pl b/tests/scripts/recursion.pl index 0c405813c..431e59211 100755 --- a/tests/scripts/recursion.pl +++ b/tests/scripts/recursion.pl @@ -16,7 +16,8 @@ use open qw(:std utf8); # exclude functions that are ok: # - mpi_write_hlp: bounded by size of mbedtls_mpi, a compile-time constant -my $known_ok = qr/mpi_write_hlp/; +# - x509_crt_verify_child: bounded by MBEDTLS_X509_MAX_INTERMEDIATE_CA +my $known_ok = qr/mpi_write_hlp|x509_crt_verify_child/; my $cur_name; my $inside;