]> git.vpit.fr Git - perl/modules/autovivification.git/commitdiff
Make it easier to tweak the parameters of t/50-threads.t
authorVincent Pit <vince@profvince.com>
Thu, 30 Dec 2010 22:58:04 +0000 (23:58 +0100)
committerVincent Pit <vince@profvince.com>
Thu, 30 Dec 2010 22:58:04 +0000 (23:58 +0100)
t/50-threads.t

index 258bf08f8ab15fb1dbd8f41e16c3c496db5c13d7..925b8bb44b04549dfbad85bae5662409788f527c 100644 (file)
@@ -27,7 +27,16 @@ BEGIN {
  require autovivification;
  skipall 'This autovivification isn\'t thread safe'
                                         unless autovivification::A_THREADSAFE();
- plan tests => 10 * 2 * 3 * (1 + 2);
+}
+
+my ($threads, $runs);
+BEGIN {
+ $threads = 10;
+ $runs    = 2;
+}
+
+BEGIN {
+ plan tests => $threads * $runs * 3 * (1 + 2);
  defined and diag "Using threads $_" for $threads::VERSION;
 }
 
@@ -37,7 +46,7 @@ BEGIN {
  sub try {
   my $tid = threads->tid();
 
-  for my $run (1 .. 2) {
+  for my $run (1 .. $runs) {
    {
     my $x;
     my $y = $x->{foo};
@@ -81,5 +90,5 @@ SKIP:
  }
 }
 
-my @t = map threads->create(\&try), 1 .. 10;
+my @t = map threads->create(\&try), 1 .. $threads;
 $_->join for @t;