From ebd47184068095a5b73792d90b3bdbdd181aa832 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Mon, 2 Mar 2020 09:00:57 +0000 Subject: [PATCH] Bug 24756: Show the warnings on Jenkins Content-Type: text/plain; charset=utf-8 Temporary measure to see which warnings Jenkins got while we cannot reproduce them ourselves on D8, D9 and D10. Signed-off-by: Marcel de Rooy --- t/db_dependent/Koha/XSLT/Security.t | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/t/db_dependent/Koha/XSLT/Security.t b/t/db_dependent/Koha/XSLT/Security.t index a61f654160..7d0d9f29ad 100644 --- a/t/db_dependent/Koha/XSLT/Security.t +++ b/t/db_dependent/Koha/XSLT/Security.t @@ -18,6 +18,7 @@ # along with Koha; if not, see . use Modern::Perl; +use Data::Dumper qw/Dumper/; use File::Temp qw/tempfile/; use Test::More tests => 8; use Test::Warn; @@ -117,7 +118,7 @@ $engine->print_warns(1); my @warn; local $SIG{__WARN__} = sub { push @warn, $_[0]; }; $output= $engine->transform({ xml => "", code => $xslt }); - is( ( grep { /failed to load external/ } @warn ), 1, 'Expected import error' ); + is( ( grep { /failed to load external/ } @warn ), 1, 'Expected import error. Additional info: '.Dumper(@warn) ); is( ( grep { /read_net/ } @warn ), 0, 'No read_net warn for remote import' ); } -- 2.11.0