Author: timbo
Date: Thu Mar 13 07:54:58 2008
New Revision: 10918
Modified:
dbi/trunk/Changes
dbi/trunk/DBI.pm
dbi/trunk/t/85gofer.t
Log:
Changed gofer test timeout to avoid spurious failures on slow systems.
Bump version to 1.603.
Modified: dbi/trunk/Changes
==============================================================================
--- dbi/trunk/Changes (original)
+++ dbi/trunk/Changes Thu Mar 13 07:54:58 2008
@@ -42,8 +42,6 @@
=head2 Changes in DBI 1.603
-Fix occasional errors reported via cpan testers
-
Fixed pure-perl fetchall_arrayref with $max_rows argument
to not error when fetching after all rows already fetched.
(Was fixed for compiled drivers back in DBI 1.31.)
@@ -52,6 +50,7 @@
Changed gofer stream transport to improve error reporting.
Changed dbi_profile() to accept a hash of profiles and apply to all.
+ Changed gofer test timeout to avoid spurious failures on slow systems.
Added options to t/85gofer.t so it's more useful for manual testing.
Modified: dbi/trunk/DBI.pm
==============================================================================
--- dbi/trunk/DBI.pm (original)
+++ dbi/trunk/DBI.pm Thu Mar 13 07:54:58 2008
@@ -9,7 +9,7 @@
require 5.006_00;
BEGIN {
-$DBI::VERSION = "1.602"; # ==> ALSO update the version in the pod text below!
+$DBI::VERSION = "1.603"; # ==> ALSO update the version in the pod text below!
}
=head1 NAME
@@ -121,7 +121,7 @@
=head2 NOTES
-This is the DBI specification that corresponds to the DBI version 1.602
+This is the DBI specification that corresponds to the DBI version 1.603
($Revision$).
The DBI is evolving at a steady pace, so it's good to check that
Modified: dbi/trunk/t/85gofer.t
==============================================================================
--- dbi/trunk/t/85gofer.t (original)
+++ dbi/trunk/t/85gofer.t Thu Mar 13 07:54:58 2008
@@ -46,7 +46,7 @@
}
my $remote_driver_dsn = "dbm_type=$opt_dbm;lockfile=0";
my $remote_dsn = "dbi:DBM:$remote_driver_dsn";
-my $timeout = 10;
+my $timeout = 30; # for slow/overloaded systems (incl virtual machines with
low priority)
plan 'no_plan';