From e0fbc15c9764e5cff1edf8b71d8c0f3370aa8da4 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Fri, 1 Sep 2017 12:25:27 -0300 Subject: [PATCH] Bug 18055: (QA followup) Only print output if DEBUG Signed-off-by: Tomas Cohen Arazi Signed-off-by: Jonathan Druart --- t/db_dependent/00-strict.t | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/t/db_dependent/00-strict.t b/t/db_dependent/00-strict.t index 131c76d048..4f3c9e4d27 100755 --- a/t/db_dependent/00-strict.t +++ b/t/db_dependent/00-strict.t @@ -45,7 +45,8 @@ if ( $ENV{KOHA_PROVE_CPUS} ) { $ncpu = Sys::CPU::cpu_count(); } -print "Using $ncpu CPUs...\n"; +print "Using $ncpu CPUs...\n" + if $ENV{DEBUG}; my $pm = new Parallel::ForkManager($ncpu); -- 2.11.4.GIT