line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Test::Stream::DeferredTests; |
2
|
12
|
|
|
12
|
|
3577
|
use strict; |
|
12
|
|
|
|
|
20
|
|
|
12
|
|
|
|
|
288
|
|
3
|
12
|
|
|
12
|
|
59
|
use warnings; |
|
12
|
|
|
|
|
21
|
|
|
12
|
|
|
|
|
312
|
|
4
|
|
|
|
|
|
|
|
5
|
12
|
|
|
12
|
|
53
|
use Carp qw/croak/; |
|
12
|
|
|
|
|
23
|
|
|
12
|
|
|
|
|
569
|
|
6
|
12
|
|
|
12
|
|
621
|
use Test::Stream::Util qw/get_tid/; |
|
12
|
|
|
|
|
24
|
|
|
12
|
|
|
|
|
78
|
|
7
|
|
|
|
|
|
|
|
8
|
12
|
|
|
12
|
|
62
|
use Test::Stream::Exporter; |
|
12
|
|
|
|
|
22
|
|
|
12
|
|
|
|
|
77
|
|
9
|
|
|
|
|
|
|
default_exports qw/def do_def/; |
10
|
12
|
|
|
12
|
|
66
|
no Test::Stream::Exporter; |
|
12
|
|
|
|
|
20
|
|
|
12
|
|
|
|
|
61
|
|
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
my %TODO; |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
sub def { |
15
|
374
|
|
|
374
|
1
|
1446
|
my ($func, @args) = @_; |
16
|
|
|
|
|
|
|
|
17
|
374
|
|
|
|
|
2594
|
my @caller = caller(0); |
18
|
|
|
|
|
|
|
|
19
|
374
|
|
100
|
|
|
1231
|
$TODO{$caller[0]} ||= []; |
20
|
374
|
|
|
|
|
470
|
push @{$TODO{$caller[0]}} => [$func, \@args, \@caller]; |
|
374
|
|
|
|
|
16222
|
|
21
|
|
|
|
|
|
|
} |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
sub do_def { |
24
|
14
|
|
|
14
|
1
|
177
|
my $for = caller; |
25
|
14
|
100
|
|
|
|
214
|
my $tests = delete $TODO{$for} or croak "No tests to run!"; |
26
|
|
|
|
|
|
|
|
27
|
13
|
|
|
|
|
48
|
for my $test (@$tests) { |
28
|
257
|
|
|
|
|
3630
|
my ($func, $args, $caller) = @$test; |
29
|
|
|
|
|
|
|
|
30
|
257
|
|
|
|
|
631
|
my ($pkg, $file, $line) = @$caller; |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
# Note: The '&' below is to bypass the prototype, which is important here. |
33
|
257
|
100
|
|
|
|
10035
|
eval <<" EOT" or die $@; |
34
|
|
|
|
|
|
|
package $pkg; |
35
|
|
|
|
|
|
|
# line $line "$file" |
36
|
|
|
|
|
|
|
\&$func(\@\$args); |
37
|
|
|
|
|
|
|
1; |
38
|
|
|
|
|
|
|
EOT |
39
|
|
|
|
|
|
|
} |
40
|
|
|
|
|
|
|
} |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
sub _verify { |
43
|
14
|
100
|
|
14
|
|
247
|
return if Test::Stream::Sync->pid != $$; |
44
|
10
|
50
|
|
|
|
52
|
return if Test::Stream::Sync->tid != get_tid(); |
45
|
10
|
|
|
|
|
23
|
my $not_ok = 0; |
46
|
10
|
|
|
|
|
70
|
for my $pkg (keys %TODO) { |
47
|
3
|
|
|
|
|
10
|
delete $TODO{$pkg}; |
48
|
3
|
100
|
|
|
|
13
|
print STDOUT "not ok - deferred tests were not run!\n" unless $not_ok++; |
49
|
3
|
|
|
|
|
8
|
print STDERR "# '$pkg' has deferred tests that were never run!\n"; |
50
|
3
|
|
100
|
|
|
19
|
$? ||= 255; |
51
|
|
|
|
|
|
|
} |
52
|
|
|
|
|
|
|
} |
53
|
|
|
|
|
|
|
|
54
|
12
|
|
|
12
|
|
1089
|
END { _verify() } |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
1; |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
__END__ |