From c89a2d61860e44c99e2e7086c1870270ad58d62c Mon Sep 17 00:00:00 2001 From: Richard Hansen Date: Wed, 8 Jan 2025 03:14:16 -0500 Subject: [PATCH] tests: Enable debug logging in `t/ssl-validate.pl` --- t/ssl-validate.pl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/t/ssl-validate.pl b/t/ssl-validate.pl index bc7553a..1414c02 100644 --- a/t/ssl-validate.pl +++ b/t/ssl-validate.pl @@ -7,6 +7,9 @@ BEGIN { } use ddclient::t::ip; +local $ddclient::globals{debug} = 1; +local $ddclient::globals{verbose} = 1; + httpd_ssl_required(); # Note: $ddclient::globals{'ssl_ca_file'} is intentionally NOT set to "$certdir/dummy-ca-cert.pem" @@ -70,6 +73,7 @@ my @test_cases = ( ); for my $tc (@test_cases) { + local $ddclient::_l = ddclient::pushlogctx($tc->{desc}); SKIP: { skip("IPv6 not supported on this system", 1) if $tc->{ipv6} && !$ipv6_supported; skip("HTTP::Daemon too old for IPv6 support", 1) if $tc->{ipv6} && !$httpd_ipv6_supported;