line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Fennec::EndRunner; |
2
|
89
|
|
|
89
|
|
861
|
use strict; |
|
89
|
|
|
|
|
191
|
|
|
89
|
|
|
|
|
3503
|
|
3
|
89
|
|
|
89
|
|
509
|
use warnings; |
|
89
|
|
|
|
|
151
|
|
|
89
|
|
|
|
|
25728
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
my $RUNNER; |
6
|
|
|
|
|
|
|
my $PID; |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
sub set_runner { |
9
|
166
|
50
|
|
166
|
0
|
706
|
$RUNNER = pop if @_; |
10
|
166
|
|
|
|
|
394
|
return $RUNNER; |
11
|
|
|
|
|
|
|
} |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
sub set_pid { |
14
|
89
|
50
|
|
89
|
0
|
540
|
$PID = pop if @_; |
15
|
89
|
|
|
|
|
255
|
return $PID; |
16
|
|
|
|
|
|
|
} |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
END { |
19
|
89
|
100
|
66
|
89
|
|
84378
|
return unless $PID && $PID == $$; |
20
|
29
|
50
|
|
|
|
178
|
return if $?; |
21
|
29
|
100
|
|
|
|
454
|
return unless $RUNNER; |
22
|
11
|
100
|
|
|
|
69
|
return if $RUNNER->_skip_all; |
23
|
10
|
50
|
|
|
|
140
|
return if $^C; # Do not print this message if perl is called with -c |
24
|
|
|
|
|
|
|
|
25
|
10
|
|
|
|
|
1350
|
print STDERR <<" EOT"; |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
############################################################################### |
28
|
|
|
|
|
|
|
# **** It does not look like done_testing() was ever called! **** # |
29
|
|
|
|
|
|
|
# # |
30
|
|
|
|
|
|
|
# As of Fennec 2 automatically-running standalone fennect tests are # |
31
|
|
|
|
|
|
|
# deprecated. This descision was made because all run after run-time # |
32
|
|
|
|
|
|
|
# methods are hacky and/or qwerky. # |
33
|
|
|
|
|
|
|
# # |
34
|
|
|
|
|
|
|
# Since there are so many legacy Fennec tests that relied on this behavior # |
35
|
|
|
|
|
|
|
# it has been carried forward in this deprecated form. An END block has # |
36
|
|
|
|
|
|
|
# been used to display this message, and will next run your tests. # |
37
|
|
|
|
|
|
|
# # |
38
|
|
|
|
|
|
|
# For most legacy tests this should work fine, however it may cause issues # |
39
|
|
|
|
|
|
|
# with any tests that relied on other END blocks, or various hacky things. # |
40
|
|
|
|
|
|
|
# # |
41
|
|
|
|
|
|
|
# DO NOT RELY ON THIS BEHAVIOR - It may go away in the near future. # |
42
|
|
|
|
|
|
|
############################################################################### |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
EOT |
45
|
|
|
|
|
|
|
|
46
|
10
|
|
|
|
|
70
|
$RUNNER->run(); |
47
|
|
|
|
|
|
|
|
48
|
1
|
|
|
|
|
11
|
my $failed = $RUNNER->collector->test_failed; |
49
|
1
|
50
|
|
|
|
43
|
return unless $failed; |
50
|
0
|
|
|
|
|
0
|
$? = $failed; |
51
|
|
|
|
|
|
|
} |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
1; |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
__END__ |