Skip to content

Commit

Permalink
Updated golden output - pod coverage reporting has changed.
Browse files Browse the repository at this point in the history
  • Loading branch information
pjcj committed Jan 10, 2007
1 parent 0d63290 commit 89283a0
Show file tree
Hide file tree
Showing 90 changed files with 342 additions and 373 deletions.
4 changes: 2 additions & 2 deletions MANIFEST
Expand Up @@ -111,7 +111,7 @@ test_output/cover/cond_branch.5.008001
test_output/cover/cond_or.5.006001
test_output/cover/cond_or.5.008
test_output/cover/cond_or.5.008001
test_output/cover/cond_or.5.009004
test_output/cover/cond_or.5.009005
test_output/cover/cond_xor.5.006001
test_output/cover/cond_xor.5.008
test_output/cover/cond_xor.5.008001
Expand Down Expand Up @@ -170,7 +170,7 @@ test_output/cover/sort.5.008
test_output/cover/special_blocks.5.006001
test_output/cover/special_blocks.5.008
test_output/cover/special_blocks.5.008001
test_output/cover/special_blocks.5.009003
test_output/cover/special_blocks.5.009005
test_output/cover/statement.5.006001
test_output/cover/subs_only.5.006001
test_output/cover/t0.5.006001
Expand Down
7 changes: 5 additions & 2 deletions lib/Devel/Cover/Test.pm
Expand Up @@ -312,8 +312,11 @@ sub create_gold

$self->{run_test_at_end} = 0;

# Pod::Coverage not available on all versions, but it must be there on 5.6.1
return if $self->{criteria} =~ /\bpod\b/ && $] != 5.006001;
# Pod::Coverage not available on all versions, but it must be there on
# 5.6.1 and 5.8.0
return if $self->{criteria} =~ /\bpod\b/ &&
$] != 5.006001 &&
$] != 5.008000;

my $debug = $ENV{DEVEL_COVER_DEBUG} || 0;

Expand Down
4 changes: 2 additions & 2 deletions test_output/cover/alias.5.006001
@@ -1,4 +1,4 @@
Reading database from /home/pjcj/g/perl/Devel-Cover/cover_db
Reading database from /home/pjcj/g/perl/svk/dc/cover_db


------------------------------------------ ------ ------ ------ ------ ------
Expand All @@ -20,7 +20,7 @@ tests/alias
line err stmt bran cond sub code
1 #!/usr/bin/perl
2
3 # Copyright 2004-2005, Paul Johnson (pjcj@cpan.org)
3 # Copyright 2004-2007, Paul Johnson (pjcj@cpan.org)
4
5 # This software is free. It is licensed under the same terms as Perl itself.
6
Expand Down
6 changes: 3 additions & 3 deletions test_output/cover/alias1.5.006001
@@ -1,4 +1,4 @@
Reading database from /home/pjcj/g/perl/Devel-Cover/cover_db
Reading database from /home/pjcj/g/perl/svk/dc/cover_db


------------------------------------------ ------ ------ ------ ------ ------
Expand All @@ -19,7 +19,7 @@ Finish: ...
tests/Alias1.pm

line err stmt bran cond sub code
1 # Copyright 2004-2005, Paul Johnson (pjcj@cpan.org)
1 # Copyright 2004-2007, Paul Johnson (pjcj@cpan.org)
2
3 # This software is free. It is licensed under the same terms as Perl itself.
4
Expand Down Expand Up @@ -67,7 +67,7 @@ tests/alias1
line err stmt bran cond sub code
1 #!/usr/bin/perl
2
3 # Copyright 2004-2005, Paul Johnson (pjcj@cpan.org)
3 # Copyright 2004-2007, Paul Johnson (pjcj@cpan.org)
4
5 # This software is free. It is licensed under the same terms as Perl itself.
6
Expand Down
6 changes: 3 additions & 3 deletions test_output/cover/alias1.5.008
@@ -1,4 +1,4 @@
Reading database from /home/pjcj/g/perl/Devel-Cover/cover_db
Reading database from /home/pjcj/g/perl/svk/dc/cover_db


------------------------------------------ ------ ------ ------ ------ ------
Expand All @@ -19,7 +19,7 @@ Finish: ...
tests/Alias1.pm

line err stmt bran cond sub code
1 # Copyright 2004-2005, Paul Johnson (pjcj@cpan.org)
1 # Copyright 2004-2007, Paul Johnson (pjcj@cpan.org)
2
3 # This software is free. It is licensed under the same terms as Perl itself.
4
Expand Down Expand Up @@ -76,7 +76,7 @@ tests/alias1
line err stmt bran cond sub code
1 #!/usr/bin/perl
2
3 # Copyright 2004-2005, Paul Johnson (pjcj@cpan.org)
3 # Copyright 2004-2007, Paul Johnson (pjcj@cpan.org)
4
5 # This software is free. It is licensed under the same terms as Perl itself.
6
Expand Down
4 changes: 2 additions & 2 deletions test_output/cover/branch_return_sub.5.006001
@@ -1,4 +1,4 @@
Reading database from /home/pjcj/g/perl/Devel-Cover/cover_db
Reading database from /home/pjcj/g/perl/svk/dc/cover_db


------------------------------------------ ------ ------ ------ ------ ------
Expand All @@ -20,7 +20,7 @@ tests/branch_return_sub
line err stmt bran cond sub code
1 #!/usr/bin/perl
2
3 # Copyright 2004-2005, Paul Johnson (pjcj@cpan.org)
3 # Copyright 2004-2007, Paul Johnson (pjcj@cpan.org)
4
5 # This software is free. It is licensed under the same terms as Perl itself.
6
Expand Down
4 changes: 2 additions & 2 deletions test_output/cover/branch_return_sub.5.008
@@ -1,4 +1,4 @@
Reading database from /home/pjcj/g/perl/Devel-Cover/cover_db
Reading database from /home/pjcj/g/perl/svk/dc/cover_db


------------------------------------------ ------ ------ ------ ------ ------
Expand All @@ -20,7 +20,7 @@ tests/branch_return_sub
line err stmt bran cond sub code
1 #!/usr/bin/perl
2
3 # Copyright 2004-2005, Paul Johnson (pjcj@cpan.org)
3 # Copyright 2004-2007, Paul Johnson (pjcj@cpan.org)
4
5 # This software is free. It is licensed under the same terms as Perl itself.
6
Expand Down
2 changes: 1 addition & 1 deletion test_output/cover/cond_and.5.006001
@@ -1,4 +1,4 @@
Reading database from /home/pjcj/g/perl/Devel-Cover/cover_db
Reading database from /home/pjcj/g/perl/svk/dc/cover_db


------------------------------------------ ------ ------ ------ ------ ------
Expand Down
2 changes: 1 addition & 1 deletion test_output/cover/cond_and.5.008
@@ -1,4 +1,4 @@
Reading database from /home/pjcj/g/perl/Devel-Cover/cover_db
Reading database from /home/pjcj/g/perl/svk/dc/cover_db


------------------------------------------ ------ ------ ------ ------ ------
Expand Down
2 changes: 1 addition & 1 deletion test_output/cover/cond_and.5.008001
@@ -1,4 +1,4 @@
Reading database from /home/pjcj/g/perl/Devel-Cover/cover_db
Reading database from /home/pjcj/g/perl/svk/dc/cover_db


------------------------------------------ ------ ------ ------ ------ ------
Expand Down
4 changes: 2 additions & 2 deletions test_output/cover/cond_branch.5.006001
@@ -1,4 +1,4 @@
Reading database from /home/pjcj/g/perl/Devel-Cover/cover_db
Reading database from /home/pjcj/g/perl/svk/dc/cover_db


------------------------------------------ ------ ------ ------ ------ ------
Expand All @@ -20,7 +20,7 @@ tests/cond_branch
line err stmt bran cond sub code
1 #!/usr/bin/perl
2
3 # Copyright 2002-2005, Paul Johnson (pjcj@cpan.org)
3 # Copyright 2002-2007, Paul Johnson (pjcj@cpan.org)
4
5 # This software is free. It is licensed under the same terms as Perl itself.
6
Expand Down
4 changes: 2 additions & 2 deletions test_output/cover/cond_branch.5.008
@@ -1,4 +1,4 @@
Reading database from /home/pjcj/g/perl/Devel-Cover/cover_db
Reading database from /home/pjcj/g/perl/svk/dc/cover_db


------------------------------------------ ------ ------ ------ ------ ------
Expand All @@ -20,7 +20,7 @@ tests/cond_branch
line err stmt bran cond sub code
1 #!/usr/bin/perl
2
3 # Copyright 2002-2005, Paul Johnson (pjcj@cpan.org)
3 # Copyright 2002-2007, Paul Johnson (pjcj@cpan.org)
4
5 # This software is free. It is licensed under the same terms as Perl itself.
6
Expand Down
4 changes: 2 additions & 2 deletions test_output/cover/cond_branch.5.008001
@@ -1,4 +1,4 @@
Reading database from /home/pjcj/g/perl/Devel-Cover/cover_db
Reading database from /home/pjcj/g/perl/svk/dc/cover_db


------------------------------------------ ------ ------ ------ ------ ------
Expand All @@ -20,7 +20,7 @@ tests/cond_branch
line err stmt bran cond sub code
1 #!/usr/bin/perl
2
3 # Copyright 2002-2005, Paul Johnson (pjcj@cpan.org)
3 # Copyright 2002-2007, Paul Johnson (pjcj@cpan.org)
4
5 # This software is free. It is licensed under the same terms as Perl itself.
6
Expand Down
2 changes: 1 addition & 1 deletion test_output/cover/cond_or.5.006001
@@ -1,4 +1,4 @@
Reading database from /home/pjcj/g/perl/Devel-Cover/cover_db
Reading database from /home/pjcj/g/perl/svk/dc/cover_db


------------------------------------------ ------ ------ ------ ------ ------
Expand Down
2 changes: 1 addition & 1 deletion test_output/cover/cond_or.5.008
@@ -1,4 +1,4 @@
Reading database from /home/pjcj/g/perl/Devel-Cover/cover_db
Reading database from /home/pjcj/g/perl/svk/dc/cover_db


------------------------------------------ ------ ------ ------ ------ ------
Expand Down
2 changes: 1 addition & 1 deletion test_output/cover/cond_or.5.008001
@@ -1,4 +1,4 @@
Reading database from /home/pjcj/g/perl/Devel-Cover/cover_db
Reading database from /home/pjcj/g/perl/svk/dc/cover_db


------------------------------------------ ------ ------ ------ ------ ------
Expand Down
@@ -1,4 +1,4 @@
Reading database from /home/pjcj/g/perl/Devel-Cover/cover_db
Reading database from /home/pjcj/g/perl/svk/dc/cover_db


------------------------------------------ ------ ------ ------ ------ ------
Expand Down
4 changes: 2 additions & 2 deletions test_output/cover/cond_xor.5.006001
@@ -1,4 +1,4 @@
Reading database from /home/pjcj/g/perl/Devel-Cover/cover_db
Reading database from /home/pjcj/g/perl/svk/dc/cover_db


------------------------------------------ ------ ------ ------ ------ ------
Expand All @@ -20,7 +20,7 @@ tests/cond_xor
line err stmt bran cond sub code
1 #!/usr/bin/perl
2
3 # Copyright 2002-2005, Paul Johnson (pjcj@cpan.org)
3 # Copyright 2002-2007, Paul Johnson (pjcj@cpan.org)
4
5 # This software is free. It is licensed under the same terms as Perl itself.
6
Expand Down
4 changes: 2 additions & 2 deletions test_output/cover/cond_xor.5.008
@@ -1,4 +1,4 @@
Reading database from /home/pjcj/g/perl/Devel-Cover/cover_db
Reading database from /home/pjcj/g/perl/svk/dc/cover_db


------------------------------------------ ------ ------ ------ ------ ------
Expand All @@ -20,7 +20,7 @@ tests/cond_xor
line err stmt bran cond sub code
1 #!/usr/bin/perl
2
3 # Copyright 2002-2005, Paul Johnson (pjcj@cpan.org)
3 # Copyright 2002-2007, Paul Johnson (pjcj@cpan.org)
4
5 # This software is free. It is licensed under the same terms as Perl itself.
6
Expand Down
4 changes: 2 additions & 2 deletions test_output/cover/cond_xor.5.008001
@@ -1,4 +1,4 @@
Reading database from /home/pjcj/g/perl/Devel-Cover/cover_db
Reading database from /home/pjcj/g/perl/svk/dc/cover_db


------------------------------------------ ------ ------ ------ ------ ------
Expand All @@ -20,7 +20,7 @@ tests/cond_xor
line err stmt bran cond sub code
1 #!/usr/bin/perl
2
3 # Copyright 2002-2005, Paul Johnson (pjcj@cpan.org)
3 # Copyright 2002-2007, Paul Johnson (pjcj@cpan.org)
4
5 # This software is free. It is licensed under the same terms as Perl itself.
6
Expand Down
4 changes: 2 additions & 2 deletions test_output/cover/default_param.5.006001
@@ -1,4 +1,4 @@
Reading database from /home/pjcj/g/perl/Devel-Cover/cover_db
Reading database from /home/pjcj/g/perl/svk/dc/cover_db


------------------------------------------ ------ ------ ------ ------ ------
Expand All @@ -20,7 +20,7 @@ tests/default_param
line err stmt bran cond sub code
1 #!/usr/bin/perl
2
3 # Copyright 2004-2005, Paul Johnson (pjcj@cpan.org)
3 # Copyright 2004-2007, Paul Johnson (pjcj@cpan.org)
4
5 # This software is free. It is licensed under the same terms as Perl itself.
6
Expand Down
4 changes: 2 additions & 2 deletions test_output/cover/default_param.5.008
@@ -1,4 +1,4 @@
Reading database from /home/pjcj/g/perl/Devel-Cover/cover_db
Reading database from /home/pjcj/g/perl/svk/dc/cover_db


------------------------------------------ ------ ------ ------ ------ ------
Expand All @@ -20,7 +20,7 @@ tests/default_param
line err stmt bran cond sub code
1 #!/usr/bin/perl
2
3 # Copyright 2004-2005, Paul Johnson (pjcj@cpan.org)
3 # Copyright 2004-2007, Paul Johnson (pjcj@cpan.org)
4
5 # This software is free. It is licensed under the same terms as Perl itself.
6
Expand Down
4 changes: 2 additions & 2 deletions test_output/cover/default_param.5.008001
@@ -1,4 +1,4 @@
Reading database from /home/pjcj/g/perl/Devel-Cover/cover_db
Reading database from /home/pjcj/g/perl/svk/dc/cover_db


------------------------------------------ ------ ------ ------ ------ ------
Expand All @@ -20,7 +20,7 @@ tests/default_param
line err stmt bran cond sub code
1 #!/usr/bin/perl
2
3 # Copyright 2004-2005, Paul Johnson (pjcj@cpan.org)
3 # Copyright 2004-2007, Paul Johnson (pjcj@cpan.org)
4
5 # This software is free. It is licensed under the same terms as Perl itself.
6
Expand Down
4 changes: 2 additions & 2 deletions test_output/cover/deparse.5.006001
@@ -1,4 +1,4 @@
Reading database from /home/pjcj/g/perl/Devel-Cover/cover_db
Reading database from /home/pjcj/g/perl/svk/dc/cover_db


------------------------------------------ ------ ------ ------ ------ ------
Expand All @@ -20,7 +20,7 @@ tests/deparse
line err stmt bran cond sub code
1 #!/usr/bin/perl -l
2
3 # Copyright 2004-2005, Paul Johnson (pjcj@cpan.org)
3 # Copyright 2004-2007, Paul Johnson (pjcj@cpan.org)
4
5 # This software is free. It is licensed under the same terms as Perl itself.
6
Expand Down
4 changes: 2 additions & 2 deletions test_output/cover/deparse.5.008
@@ -1,4 +1,4 @@
Reading database from /home/pjcj/g/perl/Devel-Cover/cover_db
Reading database from /home/pjcj/g/perl/svk/dc/cover_db


------------------------------------------ ------ ------ ------ ------ ------
Expand All @@ -20,7 +20,7 @@ tests/deparse
line err stmt bran cond sub code
1 #!/usr/bin/perl -l
2
3 # Copyright 2004-2005, Paul Johnson (pjcj@cpan.org)
3 # Copyright 2004-2007, Paul Johnson (pjcj@cpan.org)
4
5 # This software is free. It is licensed under the same terms as Perl itself.
6
Expand Down
4 changes: 2 additions & 2 deletions test_output/cover/destroy.5.006001
@@ -1,4 +1,4 @@
Reading database from /home/pjcj/g/perl/Devel-Cover/cover_db
Reading database from /home/pjcj/g/perl/svk/dc/cover_db


------------------------------------------ ------ ------ ------ ------ ------
Expand All @@ -20,7 +20,7 @@ tests/destroy
line err stmt bran cond sub code
1 #!/usr/bin/perl
2
3 # Copyright 2004-2005, Paul Johnson (pjcj@cpan.org)
3 # Copyright 2004-2007, Paul Johnson (pjcj@cpan.org)
4
5 # This software is free. It is licensed under the same terms as Perl itself.
6
Expand Down
4 changes: 2 additions & 2 deletions test_output/cover/dynamic_subs.5.006001
@@ -1,4 +1,4 @@
Reading database from /home/pjcj/g/perl/Devel-Cover/cover_db
Reading database from /home/pjcj/g/perl/svk/dc/cover_db


------------------------------------------ ------ ------ ------ ------ ------
Expand All @@ -20,7 +20,7 @@ tests/dynamic_subs
line err stmt bran cond sub code
1 #!/usr/bin/perl
2
3 # Copyright 2004-2005, Paul Johnson (pjcj@cpan.org)
3 # Copyright 2004-2007, Paul Johnson (pjcj@cpan.org)
4
5 # This software is free. It is licensed under the same terms as Perl itself.
6
Expand Down
4 changes: 2 additions & 2 deletions test_output/cover/dynamic_subs.5.008
@@ -1,4 +1,4 @@
Reading database from /home/pjcj/g/perl/Devel-Cover/cover_db
Reading database from /home/pjcj/g/perl/svk/dc/cover_db


------------------------------------------ ------ ------ ------ ------ ------
Expand All @@ -20,7 +20,7 @@ tests/dynamic_subs
line err stmt bran cond sub code
1 #!/usr/bin/perl
2
3 # Copyright 2004-2005, Paul Johnson (pjcj@cpan.org)
3 # Copyright 2004-2007, Paul Johnson (pjcj@cpan.org)
4
5 # This software is free. It is licensed under the same terms as Perl itself.
6
Expand Down
4 changes: 2 additions & 2 deletions test_output/cover/dynamic_subs.5.008001
@@ -1,4 +1,4 @@
Reading database from /home/pjcj/g/perl/Devel-Cover/cover_db
Reading database from /home/pjcj/g/perl/svk/dc/cover_db


------------------------------------------ ------ ------ ------ ------ ------
Expand All @@ -20,7 +20,7 @@ tests/dynamic_subs
line err stmt bran cond sub code
1 #!/usr/bin/perl
2
3 # Copyright 2004-2005, Paul Johnson (pjcj@cpan.org)
3 # Copyright 2004-2007, Paul Johnson (pjcj@cpan.org)
4
5 # This software is free. It is licensed under the same terms as Perl itself.
6
Expand Down

0 comments on commit 89283a0

Please sign in to comment.