This distribution has been tested as part of the cpan-testers effort to test as many new uploads to CPAN as possible. See http://testers.cpan.org/
Please cc any replies to [EMAIL PROTECTED] to keep other
test volunteers informed and to prevent any duplicate effort.
--
This is an error report generated automatically by CPANPLUS,
version 0.049.
Below is the error stack during 'make test':
Running Mkbootstrap for Devel::Cover ()
chmod 644 Cover.bs
rm -f blib/arch/auto/Devel/Cover/Cover.so
LD_RUN_PATH="" gcc -shared -L/usr/local/lib Cover.o -o
blib/arch/auto/Devel/Cover/Cover.so
chmod 755 blib/arch/auto/Devel/Cover/Cover.so
cp Cover.bs blib/arch/auto/Devel/Cover/Cover.bs
chmod 644 blib/arch/auto/Devel/Cover/Cover.bs
cp cover blib/script/cover
/usr/bin/perl "-MExtUtils::MY" -e "MY->fixin(shift)" blib/script/cover
cp gcov2perl blib/script/gcov2perl
/usr/bin/perl "-MExtUtils::MY" -e "MY->fixin(shift)" blib/script/gcov2perl
PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(0,
'blib/lib', 'blib/arch')" t/*.t
t/aalias................ok
t/aalias1...............ok
t/abranch_return_sub....ok
t/acond_and.............ok
t/acond_branch..........ok
t/acond_or..............ok
t/acond_xor.............ok
t/adestroy..............ok
t/adynamic_subs.........ok
t/aeval1................ok
t/aif...................ok
t/amodule1..............ok
t/amodule2..............ok
t/amodule_import........ok
t/aoverloaded...........ok
t/apod..................# Test 1 got: '
+----+--------------------------------------------------------------------------------------------------+----+------------------------------------------------------------------------------------------------+
| Elt|Got
| Elt|Expected
|
+----+--------------------------------------------------------------------------------------------------+----+------------------------------------------------------------------------------------------------+
| 3|- ------ ------
| 3|- ------ ------
|
| 4|File pod total
| 4|File
pod total |
| 5|- ------ ------
| 5|- ------ ------
|
* 6|tests/Module1.pm 50.00 50.00
* 6|tests/alias
n/a n/a *
* 7|tests/pod n/a n/a
* 7|Total
n/a n/a *
* 8|Total 50.00 50.00
* |
|
| 9|- ------ ------
| 8|- ------ ------
|
| 10|
| 9|
|
| 11|
| 10|
|
* 12|tests/Module1.pm
* 11|tests/alias
*
| 13|
| 12|
|
| 14|line err pod code
| 13|line err pod code
|
* 15|1 #
* |
|
* 16|2
* |
|
* 17|3 # This software is free. It is licensed under the same terms
as Perl itself. * |
|
* 18|4
* |
|
* 19|5 # The latest version of this software should be available
from my homepage: * |
|
* 20|6 # http://www.pjcj.net
* |
|
* 21|7
* |
|
* 22|8 package Module1;
* |
|
* 23|9
* |
|
* 24|10 my $y = 7;
* |
|
* 25|11 $y++;
* |
|
* 26|12
* |
|
* 27|13 sub _aa
* |
|
* 28|14 {
* |
|
* 29|15 $y++;
* |
|
* 30|16 die;
* |
|
* 31|17 die;
* |
|
* 32|18 }
* |
|
* 33|19
* |
|
* 34|20 sub _xx
* |
|
* 35|21 {
* |
|
* 36|22 $y++;
* |
|
* 37|23 die;
* |
|
* 38|24 }
* |
|
* 39|25
* |
|
* 40|26 sub yy
* |
|
* 41|27 {
* |
|
* 42|28 1 $y++;
* |
|
* 43|29 }
* |
|
* 44|30
* |
|
* 45|31 sub zz
* |
|
* 46|32 {
* |
|
* 47|33 *** 0 my $x = shift;
* |
|
* 48|34 $x++;
* |
|
* 49|35 }
* |
|
* 50|36
* |
|
* 51|37 1
* |
|
* 52|38
* |
|
* 53|39 __END__
* |
|
* 54|\n
* |
|
* 55|\n
* |
|
* 56|tests/pod
* |
|
* 57|\n
* |
|
* 58|line err pod code
* |
|
| 59|1 #!/usr/bin/perl
| 14|1 #!/usr/bin/perl
|
| 60|2
| 15|2
|
| 61|3 #
| 16|3 #
|
+----+--------------------------------------------------------------------------------------------------+----+------------------------------------------------------------------------------------------------+
| 65|7 # The latest version of this software should be available
from my homepage: | 20|7 # The latest version of this software
should be available from my homepage: |
| 66|8 # http://www.pjcj.net
| 21|8 # http://www.pjcj.net
|
| 67|9
| 22|9
|
* 68|10 # __COVER__ criteria pod
* 23|10 package Foo;
*
| 69|11
| 24|11
|
* 70|12 use strict;
* 25|12 sub is_3digits {
*
* 71|13 use warnings;
* 26|13 my $val = shift;
*
* 72|14\s\s\s\s\s\s\s\s\s\s\s\s\s\s\s\s\s\n
* 27|14 my $retval = undef;\n
*
* 73|15 use lib "tests";
* 28|15 $retval=1 if $val =~ /^\d{3}$/;
*
* 74|16\s\s\s\s\s\s\s\s\s\s\s\s\s\s\s\s\s\n
* 29|16 return $retval;\n
*
* 75|17 use Module1;
* 30|17 }
*
| 76|18
| 31|18
|
* 77|19 my @x;
* 32|19 package main;
*
| 78|20
| 33|20
|
* 79|21 sub xx
* 34|21 *main::is_3digits = *Foo::is_3digits;
*
* 80|22 {
* 35|22 # delete $Foo::{is_3digits};
*
* 81|23 $x[shift]++;\n
* 36|23\s\s\s\s\s\s\s\s\s\s\s\s\s\s\s\s\s\n
*
* 82|24 Module1::zz(0);
* 37|24 is_3digits(1234);
*
* 83|25 }
* 38|25 is_3digits(123);
*
* 84|26
* |
|
* 85|27 for (0 .. 10)
* |
|
* 86|28 {
* |
|
* 87|29 if (time)
* |
|
* 88|30 {
* |
|
* 89|31 xx(0);
* |
|
* 90|32 }
* |
|
* 91|33 else
* |
|
* 92|34 {
* |
|
* 93|35 $x[1]++;
* |
|
* 94|36 }
* |
|
* 95|37 }
* |
|
| 96|
| 39|
|
| 97|
| 40|
|
| |
* 41|
*
| |
* 42|
*
| |
* 43|
*
| |
* 44|
*
| |
* 45|
*
| |
* 46|
*
| |
* 47|
*
| |
* 48|
*
| |
* 49|
*
| |
* 50|
*
| |
* 51|
*
| |
* 52|
*
| |
* 53|
*
| |
* 54|
*
| |
* 55|
*
| |
* 56|
*
| |
* 57|
*
| |
* 58|
*
| |
* 59|
*
| |
* 60|
*
| |
* 61|
*
| |
* 62|
*
| |
* 63|
*
| |
* 64|
*
| |
* 65|
*
| |
* 66|
*
| |
* 67|
*
| |
* 68|
*
| |
* 69|
*
| |
* 70|
*
| |
* 71|
*
| |
* 72|
*
| |
* 73|
*
| |
* 74|
*
| |
* 75|
*
| |
* 76|
*
| |
* 77|
*
| |
* 78|
*
| |
* 79|
*
| |
* 80|
*
| |
* 81|
*
| |
* 82| FAILED test 1
Failed 1/1 tests, 0.00% okay
t/askip................. *
| |
* 83|
*
| |
* 84|
*
| |
* 85|
*
| |
* 86|
*
| |
* 87|
*
| |
* 88|
*
| |
* 89|
*
| |
* 90|
*
| |
* 91|
*
| |
* 92|
*
| |
* 93|
*
| |
* 94|
*
| |
* 95|
*
| |
* 96|
*
| |
* 97|
*
+----+--------------------------------------------------------------------------------------------------+----+------------------------------------------------------------------------------------------------+
' (/root/.cpanplus/5.8.3/build/Devel-Cover-0.35/blib/lib/Devel/Cover/Test.pm at line
234)
# Expected: 'No differences'
# /root/.cpanplus/5.8.3/build/Devel-Cover-0.35/blib/lib/Devel/Cover/Test.pm line 234
is: if ($differences)
ok
t/aspecial_blocks.......ok
t/astatement............ok
t/at0...................ok
t/at1...................ok
t/at2...................ok
t/atrivial..............ok
t/md5...................ok
Failed Test Stat Wstat Total Fail Failed List of Failed
-------------------------------------------------------------------------------
t/apod.t 1 1 100.00% 1
Failed 1/24 test scripts, 95.83% okay. 1/24 subtests failed, 95.83% okay.
make: *** [test_dynamic] Error 255
Additional comments:
--
Summary of my perl5 (revision 5.0 version 8 subversion 3) configuration:
Platform:
osname=linux, osvers=2.4.21-4.elsmp, archname=i386-linux-thread-multi
uname='linux tweety.devel.redhat.com 2.4.21-4.elsmp #1 smp fri oct 3 17:52:56 edt
2003 i686 i686 i386 gnulinux '
config_args='-des -Doptimize=-O2 -g -pipe -march=i386 -mcpu=i686 -Dversion=5.8.3
-Dmyhostname=localhost [EMAIL PROTECTED] -Dcc=gcc -Dcf_by=Red Hat, Inc.
-Dinstallprefix=/usr -Dprefix=/usr -Darchname=i386-linux -Dvendorprefix=/usr
-Dsiteprefix=/usr -Duseshrplib -Dusethreads -Duseithreads -Duselargefiles -Dd_dosuid
-Dd_semctl_semun -Di_db -Ui_ndbm -Di_gdbm -Di_shadow -Di_syslog -Dman3ext=3pm
-Duseperlio -Dinstallusrbinperl -Ubincompat5005 -Uversiononly -Dpager=/usr/bin/less
-isr -Dinc_version_list=5.8.2 5.8.1 5.8.0'
hint=recommended, useposix=true, d_sigaction=define
usethreads=define use5005threads=undef useithreads=define usemultiplicity=define
useperlio=define d_sfio=undef uselargefiles=define usesocks=undef
use64bitint=undef use64bitall=undef uselongdouble=undef
usemymalloc=n, bincompat5005=undef
Compiler:
cc='gcc', ccflags ='-D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DDEBUGGING
-fno-strict-aliasing -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
-I/usr/include/gdbm',
optimize='-O2 -g -pipe -march=i386 -mcpu=i686',
cppflags='-D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DDEBUGGING
-fno-strict-aliasing -I/usr/local/include -I/usr/include/gdbm'
ccversion='', gccversion='3.3.2 20040119 (Red Hat Linux 3.3.2-8)', gccosandvers=''
intsize=4, longsize=4, ptrsize=4, doublesize=8, byteorder=1234
d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=12
ivtype='long', ivsize=4, nvtype='double', nvsize=8, Off_t='off_t', lseeksize=8
alignbytes=4, prototype=define
Linker and Libraries:
ld='gcc', ldflags =' -L/usr/local/lib'
libpth=/usr/local/lib /lib /usr/lib
libs=-lnsl -lgdbm -ldb -ldl -lm -lcrypt -lutil -lpthread -lc
perllibs=-lnsl -ldl -lm -lcrypt -lutil -lpthread -lc
libc=/lib/libc-2.3.3.so, so=so, useshrplib=true, libperl=libperl.so
gnulibc_version='2.3.3'
Dynamic Linking:
dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef, ccdlflags='-rdynamic
-Wl,-rpath,/usr/lib/perl5/5.8.3/i386-linux-thread-multi/CORE'
cccdlflags='-fPIC', lddlflags='-shared -L/usr/local/lib'
