X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Faccessors_pp.t;h=de43239c432c946c4855f002228dde64c08aa91d;hb=1ed25f9e8d107a7311c579da0d23afa253c01268;hp=5a28b2fb9341dad824276f4349fb42049f7ad4d7;hpb=ed6069878c2506fed25cf5dd71c4fa6e276b80da;p=p5sagit%2FClass-Accessor-Grouped.git diff --git a/t/accessors_pp.t b/t/accessors_pp.t index 5a28b2f..de43239 100644 --- a/t/accessors_pp.t +++ b/t/accessors_pp.t @@ -1,5 +1,14 @@ +my $has_threads; +BEGIN { eval ' + use 5.008001; + use threads; + use threads::shared; + $has_threads = 1; +' } + use strict; use warnings; +no warnings 'once'; use FindBin qw($Bin); use File::Spec::Functions; use File::Spec::Unix (); # need this for %INC munging @@ -25,8 +34,11 @@ BEGIN { our $SUBTESTING = 1; for my $tname (qw/accessors.t accessors_ro.t accessors_wo.t/) { - for (1,2) { - note "\nTesting $tname without Sub::Name (pass $_)\n\n"; + my $pass = 1; + share($pass) if $has_threads; + + my $todo = sub { + note "\nTesting $tname without Sub::Name (pass @{[ $pass ++ ]})\n\n"; my $tfn = catfile($Bin, $tname); @@ -38,7 +50,18 @@ for my $tname (qw/accessors.t accessors_ro.t accessors_wo.t/) { local $SIG{__WARN__} = sub { warn @_ unless $_[0] =~ /subroutine .+ redefined/i }; do($tfn); + }; + if ($has_threads) { + threads->create(sub { + threads->create(sub { + $todo->() for (1,2) } + )->join; + $todo->() for (1,2); + })->join for (1,2) + } + else { + $todo->() for (1, 2); } }