From: Greg Sabino Mullane Date: Tue, 21 Jul 2009 01:10:53 +0000 (-0400) Subject: Don't want redirect_stderr on for <= 8.2 testing X-Git-Tag: 2.9.4~2 X-Git-Url: http://waps.l3s.uni-hannover.de/gitweb/?a=commitdiff_plain;h=48abd9fe9c4dd2100a23f4450c69f73a1e59c909;p=check_postgres.git Don't want redirect_stderr on for <= 8.2 testing --- diff --git a/t/CP_Testing.pm b/t/CP_Testing.pm index baf5ecf58..cd700b033 100644 --- a/t/CP_Testing.pm +++ b/t/CP_Testing.pm @@ -119,12 +119,13 @@ sub test_database_handle { } ## >= 8.3 - if ($imaj > 8 or ($imaj==8 and $imin >= 4)) { + if ($imaj > 8 or ($imaj==8 and $imin >= 3)) { print $cfh qq{logging_collector = off\n}; } ## <= 8.2 if ($imaj < 8 or ($imaj==8 and $imin <= 2)) { + print $cfh qq{redirect_stderr = off\n}; print $cfh qq{stats_block_level = on\n}; print $cfh qq{stats_row_level = on\n}; }