X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F50fork.t;h=229a4f249da518bff846d0e24bdee5fb750af6e5;hb=wip%2Forder_by_nulls_dbic_portion;hp=af61dca448f12220617563ead5aafd5fe4428d7d;hpb=c7e856308aeac1faa6f4d8ad59da096e009d70f4;p=dbsrgits%2FDBIx-Class.git diff --git a/t/50fork.t b/t/50fork.t index af61dca..229a4f2 100644 --- a/t/50fork.t +++ b/t/50fork.t @@ -1,29 +1,25 @@ +BEGIN { do "./t/lib/ANFANG.pm" or die ( $@ || $! ) } +use DBIx::Class::Optional::Dependencies -skip_all_without => 'test_rdbms_pg'; + use strict; use warnings; use Test::More; use Test::Exception; +use Time::HiRes qw(time sleep); +use List::Util 'max'; -use lib qw(t/lib); use DBICTest; -use DBIx::Class::Optional::Dependencies (); my $main_pid = $$; -plan skip_all => 'Test needs ' . DBIx::Class::Optional::Dependencies->req_missing_for ('rdbms_pg') - unless DBIx::Class::Optional::Dependencies->req_ok_for ('rdbms_pg'); - -my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_PG_${_}" } qw/DSN USER PASS/}; - -plan skip_all => 'Set $ENV{DBICTEST_PG_DSN}, _USER and _PASS to run this test' - . ' (note: creates and drops a table named artist!)' unless ($dsn && $user); - -# README: If you set the env var to a number greater than 10, +# README: If you set the env var to a number greater than 5, # we will use that many children my $num_children = $ENV{DBICTEST_FORK_STRESS} || 1; -if($num_children !~ /^[0-9]+$/ || $num_children < 10) { - $num_children = 10; +if($num_children !~ /^[0-9]+$/ || $num_children < 5) { + $num_children = 5; } +my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_PG_${_}" } qw/DSN USER PASS/}; my $schema = DBICTest::Schema->connect($dsn, $user, $pass, { AutoCommit => 1 }); my $parent_rs; @@ -93,6 +89,11 @@ ok(!$@) or diag "Creation eval failed: $@"; } $parent_rs->reset; + +# sleep until this spot so everything starts simultaneously +# add "until turn of second" for prettier display +my $t = int( time() ) + 4; + my @pids; while(@pids < $num_children) { @@ -107,6 +108,9 @@ while(@pids < $num_children) { $pid = $$; + sleep( max( 0.1, $t - time ) ); + note ("Child process $pid starting work at " . time() ); + my $work = sub { my $child_rs = $schema->resultset('CD')->search({ year => 1901 }); my $row = $parent_rs->next; @@ -127,7 +131,7 @@ while(@pids < $num_children) { $work->(); } - sleep(3); + sleep(2); exit 0; }