The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Reading database from ...


------------------------------------------ ------ ------ ------ ------ ------
File                                         stmt   bran   cond    sub  total
------------------------------------------ ------ ------ ------ ------ ------
tests/inc_sub                               100.0    n/a    n/a    n/a  100.0
Total                                       100.0    n/a    n/a    n/a  100.0
------------------------------------------ ------ ------ ------ ------ ------


Run: ...
Perl version: ...
OS: ...
Start: ...
Finish: ...

tests/inc_sub

line  err   stmt   bran   cond    sub   code
1                                       #!/bin/perl
2                                       
3                                       # Copyright 2002-2013, Paul Johnson (paul@pjcj.net)
4                                       
5                                       # This software is free.  It is licensed under the same terms as Perl itself.
6                                       
7                                       # The latest version of this software should be available from my homepage:
8                                       # http://www.pjcj.net
9                                       
10                                      # __COVER__ changes s/(2[12]             )\d/$1X/
11                                      # __COVER__ changes s/(22           100      )\d/$1X/
12                                      
13                                      use lib ();
14                                      
15                                      BEGIN
16                                      {
17                                          lib->import
18                                          (
19                                              sub
20                                              {
21                                                  print map("[$_]", @_), "\n";
22                                                  return unless $_[1] eq "IncSub.pm";
23                                                  my $fh;
24                                                  open $fh, "tests/IncSub.pm" or die $!;
25                                                  $fh
26                                              }
27                                          )
28                                      }
29                                      
30                                      use IncSub;
31                                      
32             1                        IncSub::check