X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F51threads.t;h=fb7cf104898fc347fcaa10e6167a63ab21f295ec;hb=696ba760d112264ea22e8b20db55987746677b81;hp=14d74e3c075984f59e31f4b20aa8110176934e26;hpb=c76e5262bd2cdd19ac0260b1a916767db304a953;p=dbsrgits%2FDBIx-Class.git diff --git a/t/51threads.t b/t/51threads.t index 14d74e3..fb7cf10 100644 --- a/t/51threads.t +++ b/t/51threads.t @@ -10,8 +10,8 @@ BEGIN { } BEGIN { - plan skip_all => 'Minimum of perl 5.8.3 required for thread tests (DBD::Pg mandated)' - if $] < '5.008003'; + plan skip_all => 'Minimum of perl 5.8.5 required for thread tests (DBD::Pg mandated)' + if $] < '5.008005'; } use threads; @@ -24,20 +24,13 @@ plan skip_all => 'Set $ENV{DBICTEST_PG_DSN}, _USER and _PASS to run this test' # README: If you set the env var to a number greater than 10, # we will use that many children -my $num_children = $ENV{DBICTEST_THREAD_STRESS}; - -plan skip_all => 'Set $ENV{DBICTEST_THREAD_STRESS} to run this test' - unless $num_children; - +my $num_children = $ENV{DBICTEST_THREAD_STRESS} || 1; if($num_children !~ /^[0-9]+$/ || $num_children < 10) { $num_children = 10; } use_ok('DBICTest::Schema'); -diag "\n\nIt is ok if you see series of 'Attempt to free unreferenced scalar: ...' warnings during this test\n " - if $] < '5.008005'; - my $schema = DBICTest::Schema->connection($dsn, $user, $pass, { AutoCommit => 1, RaiseError => 1, PrintError => 0 }); my $parent_rs;