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.
        
--

Dear DAMI,
    
This is a computer-generated error report created automatically by
CPANPLUS, version 0.074. Testers personal comments may appear 
at the end of this report.


Thank you for uploading your work to CPAN.  However, it appears that
there were some problems testing your distribution.

TEST RESULTS:

Below is the error stack from stage 'make test':

[MSG] [Fri Oct 20 22:48:29 2006] Trying to get 
'http://www.cpan.org/authors/id/D/DA/DAMI/Data-Domain-0.01.tar.gz'
[MSG] [Fri Oct 20 22:48:30 2006] Trying to get 
'http://www.cpan.org/authors/id/D/DA/DAMI/CHECKSUMS'
[MSG] [Fri Oct 20 22:48:31 2006] Checksum matches for 'Data-Domain-0.01.tar.gz'
[MSG] [Fri Oct 20 22:48:31 2006] Extracted 'Data-Domain-0.01/'
[MSG] [Fri Oct 20 22:48:31 2006] Extracted 'Data-Domain-0.01/Build.pl'
[MSG] [Fri Oct 20 22:48:31 2006] Extracted 'Data-Domain-0.01/Changes'
[MSG] [Fri Oct 20 22:48:31 2006] Extracted 'Data-Domain-0.01/lib/'
[MSG] [Fri Oct 20 22:48:31 2006] Extracted 'Data-Domain-0.01/lib/Data/'
[MSG] [Fri Oct 20 22:48:31 2006] Extracted 'Data-Domain-0.01/lib/Data/Domain.pm'
[MSG] [Fri Oct 20 22:48:31 2006] Extracted 'Data-Domain-0.01/MANIFEST'
[MSG] [Fri Oct 20 22:48:31 2006] Extracted 'Data-Domain-0.01/META.yml'
[MSG] [Fri Oct 20 22:48:31 2006] Extracted 'Data-Domain-0.01/README'
[MSG] [Fri Oct 20 22:48:31 2006] Extracted 'Data-Domain-0.01/t/'
[MSG] [Fri Oct 20 22:48:31 2006] Extracted 'Data-Domain-0.01/t/data-domain.t'
[MSG] [Fri Oct 20 22:48:31 2006] Extracted 'Data-Domain-0.01/t/pod-coverage.t'
[MSG] [Fri Oct 20 22:48:31 2006] Extracted 'Data-Domain-0.01/t/pod.t'
[MSG] [Fri Oct 20 22:48:31 2006] Extracted 'Data::Domain' to 
'/home/hybrid/.cpanplus/5.8.4/build/Data-Domain-0.01'
[ERROR] [Fri Oct 20 22:48:31 2006] Unable to find 'Build.PL' or 'Makefile.PL' 
for 'Data::Domain'; Will default to 'CPANPLUS::Dist::MM' but might be unable to 
install!
[MSG] [Fri Oct 20 22:48:31 2006] No 'Makefile.PL' found - attempting to 
generate one
[MSG] [Fri Oct 20 22:48:33 2006] Checking if your kit is complete...
Looks good
Writing Makefile for Data::Domain

[MSG] [Fri Oct 20 22:48:33 2006] DEFAULT 'filter_prereqs' HANDLER RETURNING 
'sub return value'
[MSG] [Fri Oct 20 22:48:36 2006] cp lib/Data/Domain.pm blib/lib/Data/Domain.pm
cp Build.pl blib/lib/Data/Build.pl
Manifying blib/man3/Data::Domain.3

[ERROR] [Fri Oct 20 22:48:38 2006] MAKE TEST failed: No such file or directory 
PERL_DL_NONLAZY=1 /usr/bin/perl5.8.4 "-MExtUtils::Command::MM" "-e" 
"test_harness(0, 'blib/lib', 'blib/arch')" t/*.t
t/data-domain.....# Testing Data::Domain 0.01, Perl 5.008004, /usr/bin/perl5.8.4
Can't locate Date/Calc.pm in @INC (@INC contains: 
/home/hybrid/.cpanplus/5.8.4/build/Data-Domain-0.01/blib/lib 
/home/hybrid/.cpanplus/5.8.4/build/Data-Domain-0.01/blib/arch 
/home/hybrid/.cpanplus/5.8.4/build/Data-Domain-0.01/blib 
/usr/lib/perl5/5.8.4/i486-linux /usr/lib/perl5/5.8.4/i486-linux 
/usr/lib/perl5/5.8.4 /usr/lib/perl5/site_perl/5.8.4/i486-linux 
/usr/lib/perl5/site_perl/5.8.4/i486-linux /usr/lib/perl5/site_perl/5.8.4 
/usr/lib/perl5/site_perl/5.8.4/i486-linux /usr/lib/perl5/site_perl/5.8.4 
/usr/lib/perl5/site_perl . /usr/lib/perl5/5.8.4/i486-linux /usr/lib/perl5/5.8.4 
/usr/lib/perl5/site_perl/5.8.4/i486-linux /usr/lib/perl5/site_perl/5.8.4 
/usr/lib/perl5/site_perl .) at /usr/lib/perl5/5.8.4/autouse.pm line 53.
        ...propagated at /usr/lib/perl5/5.8.4/autouse.pm line 54.
# Looks like your test died just after 41.
dubious
        Test returned status 255 (wstat 65280, 0xff00)
        after all the subtests completed successfully
t/pod-coverage....ok
t/pod.............ok
Failed Test     Stat Wstat Total Fail  List of Failed
-------------------------------------------------------------------------------
t/data-domain.t  255 65280    41    0  ??
Failed 1/3 test scripts. 0/44 subtests failed.
Files=3, Tests=44,  2 wallclock secs ( 1.67 cusr +  0.07 csys =  1.74 CPU)
Failed 1/3 test programs. 0/44 subtests failed.
make: *** [test_dynamic] Error 255



MISSING PREREQUISITES:

It was observed that the test suite seem to fail without these modules:

Date::Calc

As such, adding the prerequisite module(s) to 'PREREQ_PM' in your
Makefile.PL should solve this problem.  For example:

WriteMakefile(
    AUTHOR      => 'DAMI ([EMAIL PROTECTED])',
    ... # other information
    PREREQ_PM   => {
        'Date::Calc'    => '0', # or a minimum working version
    }
);

If you are interested in making a more flexible Makefile.PL that can
probe for missing dependencies and install them, ExtUtils::AutoInstall
at <http://search.cpan.org/dist/ExtUtils-AutoInstall/> may be
worth a look.

Thanks! :-)


******************************** NOTE ********************************
The comments above are created mechanically, possibly without manual
checking by the sender.  As there are many people performing automatic
tests on each upload to CPAN, it is likely that you will receive 
identical messages about the same problem.

If you believe that the message is mistaken, please reply to the first
one with correction and/or additional informations, and do not take
it personally.  We appreciate your patience. :)
**********************************************************************

Additional comments:
 

This report was machine-generated by CPAN::YACSmoke 0.0307.

--

Summary of my perl5 (revision 5 version 8 subversion 4) configuration:
  Platform:
    osname=linux, osvers=2.4.26, archname=i486-linux
    uname='linux midas 2.4.26 #6 wed apr 14 16:31:11 pdt 2004 i686 unknown 
unknown gnulinux '
    config_args='-de -Dprefix=/usr -Dcccdlflags=-fPIC -Dinstallprefix=/usr 
-Doptimize=-O2 -march=i486 -mcpu=i686 -Dinc_version_list=5.8.3 5.8.2 5.8.1 
5.8.0 -Darchname=i486-linux'
    hint=recommended, useposix=true, d_sigaction=define
    usethreads=undef use5005threads=undef useithreads=undef 
usemultiplicity=undef
    useperlio=define d_sfio=undef uselargefiles=define usesocks=undef
    use64bitint=undef use64bitall=undef uselongdouble=undef
    usemymalloc=n, bincompat5005=undef
  Compiler:
    cc='cc', ccflags ='-fno-strict-aliasing -I/usr/local/include 
-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64',
    optimize='-O2 -march=i486 -mcpu=i686',
    cppflags='-fno-strict-aliasing -I/usr/local/include'
    ccversion='', gccversion='3.3.3', 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='cc', ldflags =' -L/usr/local/lib'
    libpth=/usr/local/lib /lib /usr/lib
    libs=-lnsl -lgdbm -ldb -ldl -lm -lcrypt -lutil -lc
    perllibs=-lnsl -ldl -lm -lcrypt -lutil -lc
    libc=/lib/libc-2.3.2.so, so=so, useshrplib=false, libperl=libperl.a
    gnulibc_version='2.3.2'
  Dynamic Linking:
    dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef, ccdlflags='-Wl,-E'
    cccdlflags='-fPIC', lddlflags='-shared -L/usr/local/lib'

Reply via email to