]> git.vpit.fr Git - perl/modules/Lexical-Types.git/blob - t/30-threads.t
32bdf8039ae3205f903d791496204cd65c05ad05
[perl/modules/Lexical-Types.git] / t / 30-threads.t
1 #!perl -T
2
3 use strict;
4 use warnings;
5
6 use Config qw/%Config/;
7
8 BEGIN {
9  if (!$Config{useithreads}) {
10   require Test::More;
11   Test::More->import;
12   plan(skip_all => 'This perl wasn\'t built to support threads');
13  }
14 }
15
16 use threads;
17
18 use Test::More tests => 10 * 2 * (1 + 2);
19
20 {
21  package Lexical::Types::Test::Tag;
22
23  sub TYPEDSCALAR {
24   my $tid = threads->tid();
25   Test::More::is($_[0], __PACKAGE__, "base type is correct in thread $tid");
26   Test::More::is($_[2], 'Tag', "original type is correct in thread $tid");
27   $_[1] = $tid;
28   ();
29  }
30 }
31
32 { package Tag; }
33
34 use Lexical::Types as => 'Lexical::Types::Test::';
35
36 sub try {
37  for (1 .. 2) {
38   my Tag $t;
39   my $tid = threads->tid();
40   is $t, $tid, "typed lexical correctly initialized at run $_ in thread $tid";
41  }
42 }
43
44 my @t = map threads->create(\&try), 1 .. 10;
45 $_->join for @t;