diff options
author | Greg | 2009-05-29 01:06:14 +0000 |
---|---|---|
committer | Greg | 2009-05-29 01:06:14 +0000 |
commit | b42697277d7d8d4c597d0a3a5424fda292d1ce57 (patch) | |
tree | 44fe3a087c04e8c64221b24054b954aeaa182fb1 /t/CP_Testing.pm | |
parent | b1090c82524dbbd51bd3db5ef5f3d2872ebdcf20 (diff) |
Fix for better logging of tests.
Diffstat (limited to 't/CP_Testing.pm')
-rw-r--r-- | t/CP_Testing.pm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/t/CP_Testing.pm b/t/CP_Testing.pm index b77783e96..2bd345040 100644 --- a/t/CP_Testing.pm +++ b/t/CP_Testing.pm @@ -105,6 +105,11 @@ sub test_database_handle { print $cfh qq{max_prepared_transactions = 5\n}; } + ## ## >= 8.2 + if ($imaj > 8 or ($imaj==8 and $imin >= 2)) { + print $cfh qq{logging_collector = off\n}; + } + ## ## <= 8.2 if ($imaj < 8 or ($imaj==8 and $imin <= 2)) { print $cfh qq{stats_block_level = on\n}; |