line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Child::Link::IPC::Pipe::Parent; |
2
|
10
|
|
|
10
|
|
40
|
use strict; |
|
10
|
|
|
|
|
10
|
|
|
10
|
|
|
|
|
290
|
|
3
|
10
|
|
|
10
|
|
32
|
use warnings; |
|
10
|
|
|
|
|
11
|
|
|
10
|
|
|
|
|
209
|
|
4
|
|
|
|
|
|
|
|
5
|
10
|
|
|
10
|
|
30
|
use Child::Util; |
|
10
|
|
|
|
|
10
|
|
|
10
|
|
|
|
|
422
|
|
6
|
|
|
|
|
|
|
|
7
|
10
|
|
|
|
|
1232
|
use base qw/ |
8
|
|
|
|
|
|
|
Child::Link::IPC::Pipe |
9
|
|
|
|
|
|
|
Child::Link::Parent |
10
|
10
|
|
|
10
|
|
30
|
/; |
|
10
|
|
|
|
|
10
|
|
11
|
|
|
|
|
|
|
|
12
|
7
|
|
|
7
|
0
|
104
|
sub cross_pipes { 1 }; |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
1; |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 NAME |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
Child::Link::IPC::Pipe::Parent - Parent object used by the pipe plugin. |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 SEE ALSO |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
This class inherits from: |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=over 4 |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=item L |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=item L |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=item L |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=back |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 HISTORY |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
Most of this was part of L intended for use in the L |
37
|
|
|
|
|
|
|
project. Fennec is being broken into multiple parts, this is one such part. |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 FENNEC PROJECT |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
This module is part of the Fennec project. See L for more details. |
42
|
|
|
|
|
|
|
Fennec is a project to develop an extendable and powerful testing framework. |
43
|
|
|
|
|
|
|
Together the tools that make up the Fennec framework provide a potent testing |
44
|
|
|
|
|
|
|
environment. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
The tools provided by Fennec are also useful on their own. Sometimes a tool |
47
|
|
|
|
|
|
|
created for Fennec is useful outside the greater framework. Such tools are |
48
|
|
|
|
|
|
|
turned into their own projects. This is one such project. |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=over 2 |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=item L - The core framework |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
The primary Fennec project that ties them all together. |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=back |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=head1 AUTHORS |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
Chad Granum L |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=head1 COPYRIGHT |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
Copyright (C) 2010 Chad Granum |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
Child is free software; Standard perl licence. |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
Child is distributed in the hope that it will be useful, but WITHOUT |
69
|
|
|
|
|
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
70
|
|
|
|
|
|
|
FOR A PARTICULAR PURPOSE. See the license for more details. |