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 Marcus Ramberg,
    
This is a computer-generated error report created automatically by
CPANPLUS, version 0.076. 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] [Thu Jan 11 11:18:08 2007] Checking if source files are up to date
[MSG] [Thu Jan 11 11:18:08 2007] Retrieving 
/home/maddingue/.cpanplus/sourcefiles.2.15.stored
[MSG] [Thu Jan 11 11:18:09 2007] Trying to get 
'file://mnt/video/MiniCPAN/authors/id/M/MR/MRAMBERG/Catalyst-Plugin-Static-0.10.tar.gz'
[MSG] [Thu Jan 11 11:18:09 2007] Trying to get 
'file://mnt/video/MiniCPAN/authors/id/M/MR/MRAMBERG/CHECKSUMS'
[MSG] [Thu Jan 11 11:18:09 2007] Checksum matches for 
'Catalyst-Plugin-Static-0.10.tar.gz'
[MSG] [Thu Jan 11 11:18:09 2007] Extracted 'Catalyst-Plugin-Static-0.10/'
[MSG] [Thu Jan 11 11:18:09 2007] Extracted 'Catalyst-Plugin-Static-0.10/Changes'
[MSG] [Thu Jan 11 11:18:09 2007] Extracted 
'Catalyst-Plugin-Static-0.10/Makefile.PL'
[MSG] [Thu Jan 11 11:18:09 2007] Extracted 
'Catalyst-Plugin-Static-0.10/MANIFEST'
[MSG] [Thu Jan 11 11:18:09 2007] Extracted 
'Catalyst-Plugin-Static-0.10/META.yml'
[MSG] [Thu Jan 11 11:18:09 2007] Extracted 'Catalyst-Plugin-Static-0.10/README'
[MSG] [Thu Jan 11 11:18:09 2007] Extracted 
'Catalyst-Plugin-Static-0.10/Static.pm'
[MSG] [Thu Jan 11 11:18:09 2007] Extracted 'Catalyst-Plugin-Static-0.10/t/'
[MSG] [Thu Jan 11 11:18:09 2007] Extracted 
'Catalyst-Plugin-Static-0.10/t/01use.t'
[MSG] [Thu Jan 11 11:18:09 2007] Extracted 
'Catalyst-Plugin-Static-0.10/t/02static.t'
[MSG] [Thu Jan 11 11:18:09 2007] Extracted 'Catalyst-Plugin-Static-0.10/t/lib/'
[MSG] [Thu Jan 11 11:18:09 2007] Extracted 
'Catalyst-Plugin-Static-0.10/t/lib/TestApp.pm'
[MSG] [Thu Jan 11 11:18:09 2007] Extracted 'Catalyst::Plugin::Static' to 
'/home/maddingue/.cpanplus/5.8.5/build/Catalyst-Plugin-Static-0.10'
[MSG] [Thu Jan 11 11:18:09 2007] Checking if your kit is complete...
Looks good
Writing Makefile for Catalyst::Plugin::Static

[MSG] [Thu Jan 11 11:18:09 2007] DEFAULT 'filter_prereqs' HANDLER RETURNING 
'sub return value'
[MSG] [Thu Jan 11 11:18:10 2007] cp Static.pm blib/lib/Catalyst/Plugin/Static.pm
Manifying blib/man3/Catalyst::Plugin::Static.3pm

[ERROR] [Thu Jan 11 11:18:11 2007] MAKE TEST failed: Illegal seek 
PERL_DL_NONLAZY=1 /usr/bin/perl5.8.5 "-MExtUtils::Command::MM" "-e" 
"test_harness(0, 'blib/lib', 'blib/arch')" t/*.t
t/01use.......ok
t/02static....[error] Caught exception in engine "Can't locate object method 
"request" via package "Catalyst::Engine::Test" at 
/usr/lib/perl5/site_perl/5.8.5/Catalyst/Engine/HTTP/Base.pm line 75."

#   Failed test 'OK status code'
#   at t/02static.t line 16.
#          got: '500'
#     expected: '200'

#   Failed test 'Content length'
#   at t/02static.t line 17.
#          got: undef
#     expected: '1163'

#   Failed test 'Modified date'
#   at t/02static.t line 18.
#          got: undef
#     expected: '1124975391'

#   Failed test 'Content'
#   at t/02static.t line 19.
#          got: '<HTML>
# <HEAD><TITLE>An Error Occurred</TITLE></HEAD>
# <BODY>
# <H1>An Error Occurred</H1>
# 500 Internal Server Error
# </BODY>
# </HTML>
# '
#     expected: 'package main;
# 
# use Test::More tests => 10;
# use lib 't/lib';
# use Catalyst::Test 'TestApp';
# 
# use File::stat;
# use File::Slurp;
# use HTTP::Date;
# use HTTP::Request::Common;
# 
# my $stat = stat($0);
# 
# {
#     ok( my $response = request('/02static.t'),        'Request'               
    );
#     is( $response->code, 200,                       'OK status code'          
  );
#     is( $response->content_length, $stat->size,     'Content length'          
  );
#     is( $response->last_modified, $stat->mtime,     'Modified date'           
  );
#     is( $response->content, read_file($0),          'Content'                 
  );
# }
# 
# {
# 
#     my $request = GET( 'http://localhost/02static.t',
#         'If-Modified-Since' => time2str($stat->mtime)
#     );
# 
#     ok( my $response = request($request),             'If Modified Since 
request' );
#     is( $response->code , 304,                        'Not Modified status 
code'  );
#     is( $response->content , '',                      'No content'            
    );
# }
# 
# {
#     ok( my $response = request('/non/existing/file'), 'Non existing uri 
request'  );
#     is( $response->code , 404,                        'Not Found status code' 
    );
# }
# '
[error] Caught exception in engine "Can't locate object method "request" via 
package "Catalyst::Engine::Test" at 
/usr/lib/perl5/site_perl/5.8.5/Catalyst/Engine/HTTP/Base.pm line 75."

#   Failed test 'Not Modified status code'
#   at t/02static.t line 29.
#          got: '500'
#     expected: '304'

#   Failed test 'No content'
#   at t/02static.t line 30.
#          got: '<HTML>
# <HEAD><TITLE>An Error Occurred</TITLE></HEAD>
# <BODY>
# <H1>An Error Occurred</H1>
# 500 Internal Server Error
# </BODY>
# </HTML>
# '
#     expected: ''
[error] Caught exception in engine "Can't locate object method "request" via 
package "Catalyst::Engine::Test" at 
/usr/lib/perl5/site_perl/5.8.5/Catalyst/Engine/HTTP/Base.pm line 75."

#   Failed test 'Not Found status code'
#   at t/02static.t line 35.
#          got: '500'
#     expected: '404'
# Looks like you failed 7 tests of 10.
dubious
        Test returned status 7 (wstat 1792, 0x700)
DIED. FAILED tests 2-5, 7-8, 10
        Failed 7/10 tests, 30.00% okay
Failed Test  Stat Wstat Total Fail  List of Failed
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
t/02static.t    7  1792    10    7  2-5 7-8 10
Failed 1/2 test scripts. 7/11 subtests failed.
Files=2, Tests=11,  1 wallclock secs ( 0.65 cusr +  0.09 csys =  0.74 CPU)
Failed 1/2 test programs. 7/11 subtests failed.
make: *** [test_dynamic] Erreur 7


PREREQUISITES:

Here is a list of prerequisites you specified and versions we 
managed to load:
                                
        Catalyst                         5.7006
        File::MimeInfo                     0.13
        File::Slurp                     9999.12

******************************** 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:
 

--

Summary of my perl5 (revision 5 version 8 subversion 5) configuration:
  Platform:
    osname=linux, osvers=2.6.3-25mdk-i686-up-4gb, 
archname=i386-linux-thread-multi
    uname='linux mercury.mandriva.com 2.6.3-25mdk-i686-up-4gb #1 fri jan 14 
03:39:39 mst 2005 i686 intel(r) pentium(r) 4 cpu 3.00ghz unknown gnulinux '
    config_args='-des -Dinc_version_list=5.8.4/i386-linux-thread-multi 5.8.4 
5.8.3/i386-linux-thread-multi 5.8.3 5.8.2/i386-linux-thread-multi 5.8.2 
5.8.1/i386-linux-thread-multi 5.8.1 5.8.0/i386-linux-thread-multi 5.8.0 5.6.1 
5.6.0 -Darchname=i386-linux -Dcc=gcc -Doptimize=-O2 -fomit-frame-pointer -pipe 
-march=i586 -mtune=pentiumpro  -Dprefix=/usr -Dvendorprefix=/usr 
-Dsiteprefix=/usr -Dman3ext=3pm -Dcf_by=Mandrakesoft -Dmyhostname=localhost 
[EMAIL PROTECTED] -Dd_dosuid -Ud_csh -Duseshrplib -Accflags=-DPERL_DISABLE_PMC 
-Dusethreads'
    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 
-DPERL_DISABLE_PMC -fno-strict-aliasing -pipe -I/usr/local/include 
-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/gdbm',
    optimize='-O2 -fomit-frame-pointer -pipe -march=i586 -mtune=pentiumpro ',
    cppflags='-D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DPERL_DISABLE_PMC 
-fno-strict-aliasing -pipe -I/usr/local/include -I/usr/include/gdbm'
    ccversion='', gccversion='3.4.1 (Mandrakelinux 10.1 3.4.1-4mdk)', 
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 -lndbm -lgdbm -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='-Wl,-E 
-Wl,-rpath,/usr/lib/perl5/5.8.5/i386-linux-thread-multi/CORE'
    cccdlflags='-fPIC', lddlflags='-shared -L/usr/local/lib'

Reply via email to