develooper Front page | perl.cpan.testers | Postings from May 2008

FAIL Test-StubGenerator-0.9.5 i386-freebsd-64int 6.1-release

From:
srezic
Date:
May 25, 2008 13:30
Subject:
FAIL Test-StubGenerator-0.9.5 i386-freebsd-64int 6.1-release
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 cpan-testers@perl.org to keep other
test volunteers informed and to prevent any duplicate effort.

--
Dear Kent Cowgill,
    
This is a computer-generated report for Test-StubGenerator-0.9.5
on perl 5.8.8, created by CPAN-Reporter-1.15. 

Thank you for uploading your work to CPAN.  However, there was a problem
testing your distribution.

If you think this report is invalid, please consult the CPAN Testers Wiki
for suggestions on how to avoid getting FAIL reports for missing library
or binary dependencies, unsupported operating systems, and so on:

http://cpantest.grango.org/wiki/CPANAuthorNotes

Sections of this report:

    * Tester comments
    * Program output
    * Prerequisites
    * Environment and other context

------------------------------
TESTER COMMENTS
------------------------------

Additional comments from tester: 

none provided

------------------------------
PROGRAM OUTPUT
------------------------------

Output from '/usr/bin/make test':

PERL_DL_NONLAZY=1 /usr/local/bin/perl5.8.8 "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib', 'blib/arch')" t/*.t
t/00-load................# Testing Test::StubGenerator 0.9.5, Perl 5.008008, /usr/local/bin/perl5.8.8
ok
t/autogen................ok
t/boilerplate............skipped
        all skipped: Author test.  Set $ENV{ TEST_AUTHOR } to enable this test.
t/manifest...............skipped
        all skipped: Author test.  Set $ENV{ TEST_AUTHOR } to enable this test.
t/perl-critic............skipped
        all skipped: Author test.  Set $ENV{ TEST_AUTHOR } to enable this test.
t/pod-coverage...........ok
t/pod....................skipped
        all skipped: Author test.  Set $ENV{ TEST_AUTHOR } to enable this test.
t/stub_hashash...........
#   Failed test 'got back what we expected'
#   in t/stub_hashash.t at line 37.
#          got: '#!/usr/bin/perl
# 
# use strict;
# use warnings;
# 
# use Test::More qw/no_plan/;
# 
# BEGIN { use_ok('test'); }
# 
# ok( my $obj = test->new(), 'can create object test' );
# isa_ok( $obj, 'test', 'object $obj' );
# can_ok( $obj, 'args', 'name' );
# 
# # Create some variables with which to test the test objects' methods
# # Note: give these some reasonable values.  Then try unreasonable values :)
# my %arg_hash = ( '' => '', );
# 
# # And now to test the methods/subroutines.
# ok( $obj->args(%arg_hash), 'can call $obj->args()' );
# ok( $obj->args(),          'can call $obj->args() without params' );
# 
# ok( $obj->name(), 'can call $obj->name() without params' );
# '
#     expected: '#!/usr/bin/perl
# 
# use strict;
# use warnings;
# 
# use Test::More qw/no_plan/;
# 
# BEGIN { use_ok('test'); }
# 
# ok( my $obj = test->new(), 'can create object test' );
# isa_ok( $obj, 'test', 'object $obj' );
# can_ok( $obj, 'args', 'name' );
# 
# # Create some variables with which to test the test objects' methods
# # Note: give these some reasonable values.  Then try unreasonable values :)
# my %arg_hash = ( '' => '', );
# 
# # And now to test the methods/subroutines.
# ok( $obj->args(%arg_hash), 'can call $obj->args()' );
# ok( $obj->args(), 'can call $obj->args() without params' );
# 
# ok( $obj->name(), 'can call $obj->name() without params' );
# '
# Looks like you failed 1 test of 4.
dubious
	Test returned status 1 (wstat 256, 0x100)
DIED. FAILED test 4
	Failed 1/4 tests, 75.00% okay
t/stub_instance..........
#   Failed test 'got back what we were expecting'
#   in t/stub_instance.t at line 21.
#          got: '#!/usr/bin/perl
# 
# use strict;
# use warnings;
# 
# use Test::More qw/no_plan/;
# 
# BEGIN { use_ok('Instance'); }
# 
# ok( my $obj = Instance->instance(), 'can create object Instance' );
# isa_ok( $obj, 'Instance', 'object $obj' );
# can_ok( $obj, 'get_name', 'set_name', 'set_names' );
# 
# # Create some variables with which to test the Instance objects' methods
# # Note: give these some reasonable values.  Then try unreasonable values :)
# my @names = ( '', );
# 
# # And now to test the methods/subroutines.
# ok( $obj->get_name(), 'can call $obj->get_name() without params' );
# 
# ok( $obj->set_name(), 'can call $obj->set_name() without params' );
# 
# ok( $obj->set_names(@names), 'can call $obj->set_names()' );
# ok( $obj->set_names(),       'can call $obj->set_names() without params' );
# '
#     expected: '#!/usr/bin/perl
# 
# use strict;
# use warnings;
# 
# use Test::More qw/no_plan/;
# 
# BEGIN { use_ok('Instance'); }
# 
# ok( my $obj = Instance->instance(), 'can create object Instance' );
# isa_ok( $obj, 'Instance', 'object $obj' );
# can_ok( $obj, 'get_name', 'set_name', 'set_names' );
# 
# # Create some variables with which to test the Instance objects' methods
# # Note: give these some reasonable values.  Then try unreasonable values :)
# my @names = ( '', );
# 
# # And now to test the methods/subroutines.
# ok( $obj->get_name(), 'can call $obj->get_name() without params' );
# 
# ok( $obj->set_name(), 'can call $obj->set_name() without params' );
# 
# ok( $obj->set_names(@names), 'can call $obj->set_names()' );
# ok( $obj->set_names(), 'can call $obj->set_names() without params' );
# '
# Looks like you failed 1 test of 4.
dubious
	Test returned status 1 (wstat 256, 0x100)
DIED. FAILED test 4
	Failed 1/4 tests, 75.00% okay
t/stub_invalidvar........ok
t/stub_modoutdir.........
#   Failed test 'got back what we were expecting'
#   in t/stub_modoutdir.t at line 26.
#          got: '#!/usr/bin/perl
# 
# use strict;
# use warnings;
# 
# use Test::More qw/no_plan/;
# 
# BEGIN { use_ok('MyObj'); }
# 
# ok( my $obj = MyObj->new(), 'can create object MyObj' );
# isa_ok( $obj, 'MyObj', 'object $obj' );
# can_ok( $obj, 'get_name', 'set_names' );
# 
# # Create some variables with which to test the MyObj objects' methods
# # Note: give these some reasonable values.  Then try unreasonable values :)
# my @names = ( '', );
# 
# # And now to test the methods/subroutines.
# ok( $obj->get_name(), 'can call $obj->get_name() without params' );
# 
# ok( $obj->set_names(@names), 'can call $obj->set_names()' );
# ok( $obj->set_names(),       'can call $obj->set_names() without params' );
# '
#     expected: '#!/usr/bin/perl
# 
# use strict;
# use warnings;
# 
# use Test::More qw/no_plan/;
# 
# BEGIN { use_ok('MyObj'); }
# 
# ok( my $obj = MyObj->new(), 'can create object MyObj' );
# isa_ok( $obj, 'MyObj', 'object $obj' );
# can_ok( $obj, 'get_name', 'set_names' );
# 
# # Create some variables with which to test the MyObj objects' methods
# # Note: give these some reasonable values.  Then try unreasonable values :)
# my @names = ( '', );
# 
# # And now to test the methods/subroutines.
# ok( $obj->get_name(), 'can call $obj->get_name() without params' );
# 
# ok( $obj->set_names(@names), 'can call $obj->set_names()' );
# ok( $obj->set_names(), 'can call $obj->set_names() without params' );
# '
# Looks like you failed 1 test of 4.
dubious
	Test returned status 1 (wstat 256, 0x100)
DIED. FAILED test 4
	Failed 1/4 tests, 75.00% okay
t/stub_modoutfile........
#   Failed test 'got back what we were expecting'
#   in t/stub_modoutfile.t at line 29.
#          got: '#!/usr/bin/perl
# 
# use strict;
# use warnings;
# 
# use Test::More qw/no_plan/;
# 
# BEGIN { use_ok('MyObj'); }
# 
# ok( my $obj = MyObj->new(), 'can create object MyObj' );
# isa_ok( $obj, 'MyObj', 'object $obj' );
# can_ok( $obj, 'get_name', 'set_names' );
# 
# # Create some variables with which to test the MyObj objects' methods
# # Note: give these some reasonable values.  Then try unreasonable values :)
# my @names = ( '', );
# 
# # And now to test the methods/subroutines.
# ok( $obj->get_name(), 'can call $obj->get_name() without params' );
# 
# ok( $obj->set_names(@names), 'can call $obj->set_names()' );
# ok( $obj->set_names(),       'can call $obj->set_names() without params' );
# '
#     expected: '#!/usr/bin/perl
# 
# use strict;
# use warnings;
# 
# use Test::More qw/no_plan/;
# 
# BEGIN { use_ok('MyObj'); }
# 
# ok( my $obj = MyObj->new(), 'can create object MyObj' );
# isa_ok( $obj, 'MyObj', 'object $obj' );
# can_ok( $obj, 'get_name', 'set_names' );
# 
# # Create some variables with which to test the MyObj objects' methods
# # Note: give these some reasonable values.  Then try unreasonable values :)
# my @names = ( '', );
# 
# # And now to test the methods/subroutines.
# ok( $obj->get_name(), 'can call $obj->get_name() without params' );
# 
# ok( $obj->set_names(@names), 'can call $obj->set_names()' );
# ok( $obj->set_names(), 'can call $obj->set_names() without params' );
# '
# Looks like you failed 1 test of 4.
dubious
	Test returned status 1 (wstat 256, 0x100)
DIED. FAILED test 4
	Failed 1/4 tests, 75.00% okay
t/stub_module............
#   Failed test 'got back what we were expecting'
#   in t/stub_module.t at line 30.
#          got: '#!/usr/bin/perl
# 
# use strict;
# use warnings;
# 
# use Test::More qw/no_plan/;
# 
# BEGIN { use_ok('MyObj'); }
# 
# ok( my $obj = MyObj->new(), 'can create object MyObj' );
# isa_ok( $obj, 'MyObj', 'object $obj' );
# can_ok( $obj, 'get_name', 'set_names' );
# 
# # Create some variables with which to test the MyObj objects' methods
# # Note: give these some reasonable values.  Then try unreasonable values :)
# my @names = ( '', );
# 
# # And now to test the methods/subroutines.
# ok( $obj->get_name(), 'can call $obj->get_name() without params' );
# 
# ok( $obj->set_names(@names), 'can call $obj->set_names()' );
# ok( $obj->set_names(),       'can call $obj->set_names() without params' );
# '
#     expected: '#!/usr/bin/perl
# 
# use strict;
# use warnings;
# 
# use Test::More qw/no_plan/;
# 
# BEGIN { use_ok('MyObj'); }
# 
# ok( my $obj = MyObj->new(), 'can create object MyObj' );
# isa_ok( $obj, 'MyObj', 'object $obj' );
# can_ok( $obj, 'get_name', 'set_names' );
# 
# # Create some variables with which to test the MyObj objects' methods
# # Note: give these some reasonable values.  Then try unreasonable values :)
# my @names = ( '', );
# 
# # And now to test the methods/subroutines.
# ok( $obj->get_name(), 'can call $obj->get_name() without params' );
# 
# ok( $obj->set_names(@names), 'can call $obj->set_names()' );
# ok( $obj->set_names(), 'can call $obj->set_names() without params' );
# '
# Looks like you failed 1 test of 9.
dubious
	Test returned status 1 (wstat 256, 0x100)
DIED. FAILED test 9
	Failed 1/9 tests, 88.89% okay
t/stub_nopermissions.....ok
t/stub_nosub.............ok
t/stub_notadirectory.....ok
t/stub_notidymod.........ok
t/stub_script............No packages found at t/stub_script.t line 16
ok
t/stub_submodule.........ok
t/stub_unwritablefile....ok
t/stub_var...............No packages found at t/stub_var.t line 21
ok
t/todo...................skipped
        all skipped: Author test.  Set $ENV{ TEST_AUTHOR } to enable this test.
t/unix-text..............skipped
        all skipped: Author test.  Set $ENV{ TEST_AUTHOR } to enable this test.
Failed Test         Stat Wstat Total Fail  List of Failed
-------------------------------------------------------------------------------
t/stub_hashash.t       1   256     4    1  4
t/stub_instance.t      1   256     4    1  4
t/stub_modoutdir.t     1   256     4    1  4
t/stub_modoutfile.t    1   256     4    1  4
t/stub_module.t        1   256     9    1  9
6 tests skipped.
Failed 5/23 test scripts. 5/75 subtests failed.
Files=23, Tests=75, 25 wallclock secs ( 8.46 cusr +  3.28 csys = 11.74 CPU)
Failed 5/23 test programs. 5/75 subtests failed.
*** Error code 25

Stop in /var/tmp/CPAN-build/Test-StubGenerator-0.9.5-KKC45y.

------------------------------
PREREQUISITES
------------------------------

Prerequisite modules loaded:

requires:

    Module     Need  Have    
    ---------- ----- --------
    Perl::Tidy 0     20071205
    PPI        1.118 1.118   
    Test::More 0     0.62    

------------------------------
ENVIRONMENT AND OTHER CONTEXT
------------------------------

Environment variables:

    PATH = /usr/local/bin:/usr/X11R6/bin:/usr/X11/bin:/usr/perl5.8.0/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/usr/local/pilot/bin:/home/cpansand/bin/freebsd6.1:/home/cpansand/bin/sh:/home/cpansand/bin:/usr/X386/bin:/usr/games:/home/cpansand/devel:/home/e/eserte/work/srezic-misc/scripts:/home/e/eserte/devel:/usr/home/e/eserte/work/srezic-misc/scripts
    PERL5LIB = /usr/local/src/CPAN/build/Perl-Tidy-20071205-NJjGLi/blib/arch:/usr/local/src/CPAN/build/Perl-Tidy-20071205-NJjGLi/blib/lib:/usr/local/src/CPAN/build/Data-Passphrase-0.0.7-ACqzG3/blib/arch:/usr/local/src/CPAN/build/Data-Passphrase-0.0.7-ACqzG3/blib/lib:/usr/local/src/CPAN/build/Bloom-Filter-1.0-nr318q/blib/arch:/usr/local/src/CPAN/build/Bloom-Filter-1.0-nr318q/blib/lib:/usr/local/src/CPAN/build/Object-InsideOut-3.41-Gq5gMd/blib/arch:/usr/local/src/CPAN/build/Object-InsideOut-3.41-Gq5gMd/blib/lib:/usr/local/src/CPAN/build/namespace-clean-0.08-lKnYdY/blib/arch:/usr/local/src/CPAN/build/namespace-clean-0.08-lKnYdY/blib/lib:/usr/local/src/CPAN/build/Sub-Exporter-0.979-5BPBVc/blib/arch:/usr/local/src/CPAN/build/Sub-Exporter-0.979-5BPBVc/blib/lib:/usr/local/src/CPAN/build/Data-OptList-0.103-vHPYDi/blib/arch:/usr/local/src/CPAN/build/Data-OptList-0.103-vHPYDi/blib/lib:/usr/local/src/CPAN/build/ExtUtils-MakeMaker-6.44-qVxlW2/blib/arch:/usr/local/src/CPAN/build/ExtUtils-MakeMaker-6.44-qVxlW2/blib/lib:/usr/local/src/CPAN/build/Sub-Name-0.03-RZubNg/blib/arch:/usr/local/src/CPAN/build/Sub-Name-0.03-RZubNg/blib/lib:/usr/local/src/CPAN/build/IO-Prompt-v0.99.4-k4aZJi/blib/arch:/usr/local/src/CPAN/build/IO-Prompt-v0.99.4-k4aZJi/blib/lib:/usr/local/src/CPAN/build/Test-Files-0.14-pd7obM/blib/arch:/usr/local/src/CPAN/build/Test-Files-0.14-pd7obM/blib/lib:/usr/local/src/CPAN/build/Inline-TT-0.07-KPsoA6/blib/arch:/usr/local/src/CPAN/build/Inline-TT-0.07-KPsoA6/blib/lib:/usr/local/src/CPAN/build/Gantry-3.51-h881RX/blib/arch:/usr/local/src/CPAN/build/Gantry-3.51-h881RX/blib/lib:/usr/local/src/CPAN/build/Sub-Install-0.924-52nyjI/blib/arch:/usr/local/src/CPAN/build/Sub-Install-0.924-52nyjI/blib/lib:/usr/local/src/CPAN/build/HTML-Prototype-1.48-RhK39e/blib/arch:/usr/local/src/CPAN/build/HTML-Prototype-1.48-RhK39e/blib/lib:/usr/local/src/CPAN/build/Template-Plugin-HTML-SuperForm-xEP6JM/blib/arch:/usr/local/src/CPAN/build/Template-Plugin-HTML-SuperForm-xEP6JM/blib/lib:/usr/local/src/CPAN/build/Hash-Merge-0.10-1PRoTp/b!
 lib/arch
:/usr/local/src/CPAN/build/Hash-Merge-0.10-1PRoTp/blib/lib:/usr/local/src/CPAN/build/CGI-Simple-1.105-6Cct4y/blib/arch:/usr/local/src/CPAN/build/CGI-Simple-1.105-6Cct4y/blib/lib:/usr/local/src/CPAN/build/HTTP-Server-Simple-0.33-eeVNae/blib/arch:/usr/local/src/CPAN/build/HTTP-Server-Simple-0.33-eeVNae/blib/lib:/usr/local/src/CPAN/build/HTML-SuperForm-yicxCF/blib/arch:/usr/local/src/CPAN/build/HTML-SuperForm-yicxCF/blib/lib:/usr/local/src/CPAN/build/Data-FormValidator-4.57-ZDa3QG/blib/arch:/usr/local/src/CPAN/build/Data-FormValidator-4.57-ZDa3QG/blib/lib:/usr/local/src/CPAN/build/Perl6-Junction-1.30000-rHDrZi/blib/arch:/usr/local/src/CPAN/build/Perl6-Junction-1.30000-rHDrZi/blib/lib:/usr/local/src/CPAN/build/FERNANDES-E5nWWv/blib/arch:/usr/local/src/CPAN/build/FERNANDES-E5nWWv/blib/lib
    PERL5OPT = 
    PERL5_CPANPLUS_IS_RUNNING = 13983
    PERL5_CPAN_IS_RUNNING = 13983
    PERL5_CPAN_IS_RUNNING_IN_RECURSION = 31550,13983
    PERL_EXTUTILS_AUTOINSTALL = --defaultdeps
    PERL_HTML_DISPLAY_CLASS = HTML::Display::Mozilla
    SHELL = /usr/local/bin/zsh
    TERM = xterm

Perl special variables (and OS-specific diagnostics, for MSWin32):

    $^X = /usr/local/bin/perl5.8.8
    $UID/$EUID = 1023 / 1023
    $GID = 1023 1023 1023
    $EGID = 1023 1023 1023

Perl module toolchain versions installed:

    Module              Have     
    ------------------- ---------
    CPAN                1.92_62  
    Cwd                 3.23     
    ExtUtils::CBuilder  0.18     
    ExtUtils::Command   1.13     
    ExtUtils::Install   1.45     
    ExtUtils::MakeMaker 6.44     
    ExtUtils::Manifest  1.51     
    ExtUtils::ParseXS   n/a      
    File::Spec          3.23     
    Module::Build       0.2808_01
    Module::Signature   0.55     
    Test::Harness       2.64     
    Test::More          0.62     
    YAML                0.62     
    YAML::Syck          0.99     
    version             0.73     


--

Summary of my perl5 (revision 5 version 8 subversion 8) configuration:
  Platform:
    osname=freebsd, osvers=6.1-release, archname=i386-freebsd-64int
    uname='freebsd freebsd.org 6.1-release freebsd 6.1-release #0: wed mar 15 00:45:26 pst 2006 kris@freebsd.org:usrsrcsysmagickernelpath i386 '
    config_args='-sde -Dprefix=/usr/local -Darchlib=/usr/local/lib/perl5/5.8.8/mach -Dprivlib=/usr/local/lib/perl5/5.8.8 -Dman3dir=/usr/local/lib/perl5/5.8.8/perl/man/man3 -Dman1dir=/usr/local/man/man1 -Dsitearch=/usr/local/lib/perl5/site_perl/5.8.8/mach -Dsitelib=/usr/local/lib/perl5/site_perl/5.8.8 -Dscriptdir=/usr/local/bin -Dsiteman3dir=/usr/local/lib/perl5/5.8.8/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Ui_malloc -Ui_iconv -Uinstallusrbinperl -Dcc=cc -Duseshrplib -Dccflags=-DAPPLLIB_EXP="/usr/local/lib/perl5/5.8.8/BSDPAN" -Doptimize=-O2 -fno-strict-aliasing -pipe  -Ud_dosuid -Ui_gdbm -Dusethreads=n -Dusemymalloc=y -Duse64bitint'
    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=define use64bitall=undef uselongdouble=undef
    usemymalloc=y, bincompat5005=undef
  Compiler:
    cc='cc', ccflags ='-DAPPLLIB_EXP="/usr/local/lib/perl5/5.8.8/BSDPAN" -DHAS_FPSETMASK -DHAS_FLOATINGPOINT_H -fno-strict-aliasing -pipe -Wdeclaration-after-statement -I/usr/local/include',
    optimize='-O2 -fno-strict-aliasing -pipe ',
    cppflags='-DAPPLLIB_EXP="/usr/local/lib/perl5/5.8.8/BSDPAN" -DHAS_FPSETMASK -DHAS_FLOATINGPOINT_H -fno-strict-aliasing -pipe -Wdeclaration-after-statement -I/usr/local/include'
    ccversion='', gccversion='3.4.4 [FreeBSD] 20050518', gccosandvers=''
    intsize=4, longsize=4, ptrsize=4, doublesize=8, byteorder=12345678
    d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=12
    ivtype='long long', ivsize=8, nvtype='double', nvsize=8, Off_t='off_t', lseeksize=8
    alignbytes=4, prototype=define
  Linker and Libraries:
    ld='cc', ldflags =' -Wl,-E -L/usr/local/lib'
    libpth=/usr/lib /usr/local/lib
    libs=-lm -lcrypt -lutil
    perllibs=-lm -lcrypt -lutil
    libc=, so=so, useshrplib=true, libperl=libperl.so
    gnulibc_version=''
  Dynamic Linking:
    dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef, ccdlflags='  -Wl,-R/usr/local/lib/perl5/5.8.8/mach/CORE'
    cccdlflags='-DPIC -fPIC', lddlflags='-shared  -L/usr/local/lib'



Comments to Ask Bjørn Hansen at ask@perl.org | Group listing | About