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.
Below is the error stack during 'make test':

PERL_DL_NONLAZY=1 /usr/bin/perl -Iblib/arch -Iblib/lib -I/System/Library/Perl/darwin 
-I/System/Library/Perl -e 'use Test::Harness qw(&runtests $verbose); $verbose=0; 
runtests @ARGV;' t/*.t
t/data...........Can't locate FilterOnlyTest.pm in @INC (@INC contains: blib/arch 
blib/lib /System/Library/Perl/darwin /System/Library/Perl/darwin 
/System/Library/Perl/darwin /System/Library/Perl /System/Library/Perl/darwin 
/System/Library/Perl/darwin /System/Library/Perl /Library/Perl/darwin 
/Library/Perl/darwin /Library/Perl /Library/Perl/darwin /Library/Perl 
/Network/Library/Perl/darwin /Network/Library/Perl /Network/Library/Perl . 
/System/Library/Perl/darwin /System/Library/Perl /Library/Perl/darwin /Library/Perl 
/Library/Perl /Network/Library/Perl/darwin /Network/Library/Perl /Network/Library/Perl 
.) at t/data.t line 8.
BEGIN failed--compilation aborted at t/data.t line 8.
dubious
        Test returned status 2 (wstat 512, 0x200)
t/export.........Can't locate ExportTest.pm in @INC (@INC contains: blib/arch blib/lib 
/System/Library/Perl/darwin /System/Library/Perl/darwin /System/Library/Perl/darwin 
/System/Library/Perl /System/Library/Perl/darwin /System/Library/Perl/darwin 
/System/Library/Perl /Library/Perl/darwin /Library/Perl/darwin /Library/Perl 
/Library/Perl/darwin /Library/Perl /Network/Library/Perl/darwin /Network/Library/Perl 
/Network/Library/Perl . /System/Library/Perl/darwin /System/Library/Perl 
/Library/Perl/darwin /Library/Perl /Library/Perl /Network/Library/Perl/darwin 
/Network/Library/Perl /Network/Library/Perl .) at t/export.t line 10.
BEGIN failed--compilation aborted at t/export.t line 10.
dubious
        Test returned status 2 (wstat 512, 0x200)
DIED. FAILED test 1
        Failed 1/1 tests, 0.00% okay
t/filter.........Can't locate FilterTest.pm in @INC (@INC contains: blib/arch blib/lib 
/System/Library/Perl/darwin /System/Library/Perl/darwin /System/Library/Perl/darwin 
/System/Library/Perl /System/Library/Perl/darwin /System/Library/Perl/darwin 
/System/Library/Perl /Library/Perl/darwin /Library/Perl/darwin /Library/Perl 
/Library/Perl/darwin /Library/Perl /Network/Library/Perl/darwin /Network/Library/Perl 
/Network/Library/Perl . /System/Library/Perl/darwin /System/Library/Perl 
/Library/Perl/darwin /Library/Perl /Library/Perl /Network/Library/Perl/darwin 
/Network/Library/Perl /Network/Library/Perl .) at t/filter.t line 8.
BEGIN failed--compilation aborted at t/filter.t line 8.
dubious
        Test returned status 2 (wstat 512, 0x200)
t/filter_only....Can't locate FilterOnlyTest.pm in @INC (@INC contains: blib/arch 
blib/lib /System/Library/Perl/darwin /System/Library/Perl/darwin 
/System/Library/Perl/darwin /System/Library/Perl /System/Library/Perl/darwin 
/System/Library/Perl/darwin /System/Library/Perl /Library/Perl/darwin 
/Library/Perl/darwin /Library/Perl /Library/Perl/darwin /Library/Perl 
/Network/Library/Perl/darwin /Network/Library/Perl /Network/Library/Perl . 
/System/Library/Perl/darwin /System/Library/Perl /Library/Perl/darwin /Library/Perl 
/Library/Perl /Network/Library/Perl/darwin /Network/Library/Perl /Network/Library/Perl 
.) at t/filter_only.t line 8.
BEGIN failed--compilation aborted at t/filter_only.t line 8.
dubious
        Test returned status 2 (wstat 512, 0x200)
t/import.........dubious
        Test returned status 2 (wstat 512, 0x200)
DIED. FAILED tests 1-4
        Failed 4/4 tests, 0.00% okay
Failed Test     Stat Wstat Total Fail  Failed  List of Failed
-------------------------------------------------------------------------------
t/data.t           2   512    ??   ??       %  ??
t/export.t         2   512     1    1 100.00%  1
t/filter.t         2   512    ??   ??       %  ??
t/filter_only.t    2   512    ??   ??       %  ??
t/import.t         2   512     4    4 100.00%  1-4
Can't locate ImportTest.pm in @INC (@INC contains: blib/arch blib/lib 
/System/Library/Perl/darwin /System/Library/Perl/darwin /System/Library/Perl/darwin 
/System/Library/Perl /System/Library/Perl/darwin /System/Library/Perl/darwin 
/System/Library/Perl /Library/Perl/darwin /Library/Perl/darwin /Library/Perl 
/Library/Perl/darwin /Library/Perl /Network/Library/Perl/darwin /Network/Library/Perl 
/Network/Library/Perl . /System/Library/Perl/darwin /System/Library/Perl 
/Library/Perl/darwin /Library/Perl /Library/Perl /Network/Library/Perl/darwin 
/Network/Library/Perl /Network/Library/Perl .) at t/import.t line 10.
BEGIN failed--compilation aborted at t/import.t line 10.
Failed 5/5 test scripts, 0.00% okay. 5/5 subtests failed, 0.00% okay.
make: *** [test_dynamic] Error 2


Additional comments:

Hello, Damian Conway! Thanks for uploading your works to CPAN.

I noticed that the test suite seem to fail without these modules:

FilterOnlyTest
ExportTest
FilterTest
FilterOnlyTest
ImportTest

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

WriteMakefile(
    AUTHOR      => 'Damian Conway ([EMAIL PROTECTED])',
    ... # other information
    PREREQ_PM   => {
        'FilterOnlyTest'        => '0', # or a minimum workable version
        'ExportTest'    => '0', # or a minimum workable version
        'FilterTest'    => '0', # or a minimum workable version
        'FilterOnlyTest'        => '0', # or a minimum workable version
        'ImportTest'    => '0', # or a minimum workable 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/search?dist=ExtUtils-AutoInstall> may be
worth a look.

Thanks! :-)



--

Summary of my perl5 (revision 5.0 version 6 subversion 0) configuration:
  Platform:
    osname=darwin, osvers=6.0, archname=darwin
    uname='darwin fisheye 6.0 darwin kernel version 5.2: mon jun 17 09:55:14 pdt 2002; 
root:xnu-201-14.rootsxnu-201-14.objrelease_ppc power macintosh powerpc '
    config_args='-ds -e -Dprefix=/usr -Dccflags=-g  -pipe  -Dldflags='
    hint=recommended, useposix=true, d_sigaction=define
    usethreads=undef use5005threads=undef useithreads=undef usemultiplicity=undef
    useperlio=undef d_sfio=undef uselargefiles=define 
    use64bitint=undef use64bitall=undef uselongdouble=undef usesocks=undef
  Compiler:
    cc='cc', optimize='-Os', gccversion=Apple cpp-precomp 6.14
    cppflags='-g -pipe -pipe -fno-common -no-cpp-precomp -flat_namespace 
-DHAS_TELLDIR_PROTOTYPE -fno-strict-aliasing'
    ccflags ='-g -pipe -pipe -fno-common -no-cpp-precomp -flat_namespace 
-DHAS_TELLDIR_PROTOTYPE -fno-strict-aliasing'
    stdchar='char', d_stdstdio=undef, usevfork=true
    intsize=4, longsize=4, ptrsize=4, doublesize=8
    d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=8
    ivtype='long', ivsize=4, nvtype='double', nvsize=8, Off_t='off_t', lseeksize=8
    alignbytes=8, usemymalloc=n, prototype=define
  Linker and Libraries:
    ld='cc', ldflags =''
    libpth=/usr/lib
    libs=-lm -lc
    libc=/System/Library/Frameworks/System.framework/System, so=dylib, 
useshrplib=true, libperl=libperl.dylib
  Dynamic Linking:
    dlsrc=dl_dyld.xs, dlext=bundle, d_dlsymun=undef, ccdlflags=' '
    cccdlflags=' ', lddlflags='-bundle  -flat_namespace -undefined suppress'

Reply via email to