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/eval1                                  96.2   50.0    n/a   85.7   91.4
Total                                        96.2   50.0    n/a   85.7   91.4
------------------------------------------ ------ ------ ------ ------ ------


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

tests/eval1

line  err   stmt   bran   cond    sub   code
1                                       #!/usr/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__ skip_test $] == 5.010
11                                      # __COVER__ skip_reason One test fails only under make test on 5.10.0 unhreaded
12                                      
13             1                    1   use strict;
               1                        
               1                        
14             1                    1   use warnings;
               1                        
               1                        
15                                      
16    ***      1     50             1   use lib -d "t" ? "t" : "..";
               1                        
               1                        
17                                      
18             1                        my $x;
19                                      
20             1                    3   eval <<'EOS';
               3                        
               3                        
21                                      sub e
22                                      {
23                                          $x++;
24                                          $x
25                                      }
26                                      EOS
27                                      
28             1                    2   eval <<'EOS';
      ***      2                    0   
               2                    3   
      ***      0                        
               3                        
29                                      sub f
30                                      {
31                                          $x++;
32                                          $x
33                                      }
34                                      
35                                      sub g
36                                      {
37                                          $x++;
38                                      }
39                                      
40                                      sub h
41                                      {
42                                          $x++;
43                                      }
44                                      EOS
45                                      
46             1                        e();
47             1                        e();
48             1                        e();
49             1                        f();
50             1                        f();
51             1                        h();
52             1                        h();
53             1                        h();


Branches
--------

line  err      %   true  false   branch
----- --- ------ ------ ------   ------
16    ***     50      1      0   -d 't' ? :


Covered Subroutines
-------------------

Subroutine Count Location      
---------- ----- --------------
BEGIN          1 tests/eval1:13
BEGIN          1 tests/eval1:14
BEGIN          1 tests/eval1:16
e              3 tests/eval1:20
f              2 tests/eval1:28
h              3 tests/eval1:28

Uncovered Subroutines
---------------------

Subroutine Count Location      
---------- ----- --------------
g              0 tests/eval1:28