Back
From: metabase:user:320bfe00-2aae-11df-837a-5e0a49663a4f
Subject: FAIL Data-Dump-Streamer-2.32 v5.15.6 GNU/Linux
Date: 2011-12-23T10:03:05Z
This distribution has been tested as part of the CPAN Testers
project, supporting the Perl programming language. See
http://wiki.cpantesters.org/ for more information or email
questions to cpan-testers-discuss@perl.org
--
Dear Joshua ben Jore,
This is a computer-generated report for Data-Dump-Streamer-2.32
on perl 5.15.6, created by CPAN-Reporter-1.2003.
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://wiki.cpantesters.org/wiki/CPANAuthorNotes
Sections of this report:
* Tester comments
* Program output
* Prerequisites
* Environment and other context
------------------------------
TESTER COMMENTS
------------------------------
Additional comments from tester:
this report is from an automated smoke testing program
and was not reviewed by a human for accuracy
------------------------------
PROGRAM OUTPUT
------------------------------
Output from './Build test':
t/as.t .............. ok
t/blessed.t ......... ok
t/dogpound.t ........ ok
# Failed test 'DumpGlob, Rle, Deparse'
# at t/test_helper.pl line 114.
# Looks like you failed 1 test of 49.
t/dump.t ............
Dubious, test returned 1 (wstat 256, 0x100)
Failed 1/49 subtests
t/filter.t .......... ok
t/globtest.t ........ ok
t/hardrefs.t ........ ok
t/impure_madness.t .. ok
#
# PadWalker 1.92 is installed
Got <<'EXPECT';
my ($x,$z,@v,@y,@y_eclipse_1);
$x = 'f o o 1 foo 1';
$z = 1;
@v = (
'f',
( 'o' ) x 2,
1
);
@y = (
'b',
'a',
'r'
);
@y_eclipse_1 = (
'f',
'u',
( 'z' ) x 2
);
$CODE1 = sub {
BEGIN {
$^H{'strict/subs'} = undef;
$^H{'strict/refs'} = undef;
$^H{'strict/vars'} = undef;
}
my(@y) = ($x, ('A', 'B', 'C', 'D', 'E', 'F', 'G'), @y);
my(@v) = (('M', 'N', 'O', 'P', 'Q', 'R'), @v);
my $x = join(':', @y, @v, $z || 'undef');
$x . '!!';
};
$CODE2 = sub {
BEGIN {
$^H{'strict/subs'} = undef;
$^H{'strict/refs'} = undef;
$^H{'strict/vars'} = undef;
}
$x = shift();
$z = shift() if @_;
};
$CODE3 = sub {
BEGIN {
$^H{'strict/subs'} = undef;
$^H{'strict/refs'} = undef;
$^H{'strict/vars'} = undef;
}
return join('+', $z, $x, @y_eclipse_1);
};
EXPECT
# Failed test 'Lexicals!!'
# at t/test_helper.pl line 558.
Got <<'EXPECT';
$x = sub {
BEGIN {
$^H{'strict/subs'} = undef;
$^H{'strict/refs'} = undef;
$^H{'strict/vars'} = undef;
}
$x;
};
EXPECT
# Failed test 'Self-referential'
# at t/test_helper.pl line 558.
Got <<'EXPECT';
my ($a,$b);
$a = undef;
$b = sub {
BEGIN {
$^H{'strict/subs'} = undef;
$^H{'strict/refs'} = undef;
$^H{'strict/vars'} = undef;
}
$a;
};
$CODE1 = sub {
BEGIN {
$^H{'strict/subs'} = undef;
$^H{'strict/refs'} = undef;
$^H{'strict/vars'} = undef;
}
$a, $b;
};
EXPECT
# Failed test 'Nested closure with shared state'
# at t/test_helper.pl line 558.
Got <<'EXPECT';
my ($a,$b,$b_eclipse_1);
$a = undef;
$b = undef;
$b_eclipse_1 = undef;
$CODE1 = sub {
BEGIN {
$^H{'strict/subs'} = undef;
$^H{'strict/refs'} = undef;
$^H{'strict/vars'} = undef;
}
$a, $b;
};
$CODE2 = sub {
BEGIN {
$^H{'strict/subs'} = undef;
$^H{'strict/refs'} = undef;
$^H{'strict/vars'} = undef;
}
$a, $b_eclipse_1;
};
EXPECT
# Failed test 'Overlapping declarations'
# at t/test_helper.pl line 558.
Got <<'EXPECT';
my ($a,$b);
$a = undef;
$b = undef;
$CODE1 = sub {
BEGIN {
$^H{'strict/subs'} = undef;
$^H{'strict/refs'} = undef;
$^H{'strict/vars'} = undef;
}
$a, $b;
};
$CODE2 = sub {
BEGIN {
$^H{'strict/subs'} = undef;
$^H{'strict/refs'} = undef;
$^H{'strict/vars'} = undef;
}
$a;
};
EXPECT
# Failed test 'Overlapping declarations two'
# at t/test_helper.pl line 558.
Got <<'EXPECT';
my ($a,$a_eclipse_1);
$a = undef;
$a_eclipse_1 = undef;
$CODE1 = sub {
BEGIN {
$^H{'strict/subs'} = undef;
$^H{'strict/refs'} = undef;
$^H{'strict/vars'} = undef;
}
$a;
};
$CODE2 = sub {
BEGIN {
$^H{'strict/subs'} = undef;
$^H{'strict/refs'} = undef;
$^H{'strict/vars'} = undef;
}
$a_eclipse_1;
};
EXPECT
# Failed test 'Unrelated environments'
# at t/test_helper.pl line 558.
Got <<'EXPECT';
my ($a);
$a = undef;
$z = sub {
BEGIN {
$^H{'strict/subs'} = undef;
$^H{'strict/refs'} = undef;
$^H{'strict/vars'} = undef;
}
$a;
};
$CODE1 = sub {
BEGIN {
$^H{'strict/subs'} = undef;
$^H{'strict/refs'} = undef;
$^H{'strict/vars'} = undef;
}
$a, $z;
};
EXPECT
# Failed test 'Shared state/enclosed'
# at t/test_helper.pl line 558.
Got <<'EXPECT';
my ($a);
$a = undef;
$foo = sub {
BEGIN {
$^H{'strict/subs'} = undef;
$^H{'strict/refs'} = undef;
$^H{'strict/vars'} = undef;
}
$a;
};
$bar = sub {
BEGIN {
$^H{'strict/subs'} = undef;
$^H{'strict/refs'} = undef;
$^H{'strict/vars'} = undef;
}
$a, $foo;
};
EXPECT
# Failed test 'Named Shared state/enclosed'
# at t/test_helper.pl line 558.
Got <<'EXPECT';
$CODE1 = sub {
BEGIN {
$^H{'strict/subs'} = undef;
$^H{'strict/refs'} = undef;
$^H{'strict/vars'} = undef;
}
$b;
};
EXPECT
# Failed test 'sub b'
# at t/test_helper.pl line 558.
Got <<'EXPECT';
my ($b);
$b = sub {
BEGIN {
$^H{'strict/subs'} = undef;
$^H{'strict/refs'} = undef;
$^H{'strict/vars'} = undef;
}
$b;
};
$CODE1 = sub {
BEGIN {
$^H{'strict/subs'} = undef;
$^H{'strict/refs'} = undef;
$^H{'strict/vars'} = undef;
}
$b;
};
EXPECT
# Failed test 'double sub b'
# at t/test_helper.pl line 558.
Got <<'EXPECT';
my ($a,$x);
$a = 'foo';
$x = sub {
BEGIN {
$^H{'strict/subs'} = undef;
$^H{'strict/refs'} = undef;
$^H{'strict/vars'} = undef;
}
return $a . 'bar';
};
$CODE1 = sub {
BEGIN {
$^H{'strict/subs'} = undef;
$^H{'strict/refs'} = undef;
$^H{'strict/vars'} = undef;
}
print &$x();
};
EXPECT
# Failed test 'recursively nested subs'
# at t/test_helper.pl line 558.
Got <<'EXPECT';
my ($1_foiled_x,$1_foiled_x_eclipse_1,$x,$x_eclipse_1);
$1_foiled_x = undef;
$1_foiled_x_eclipse_1 = undef;
$x = undef;
$x_eclipse_1 = undef;
$ARRAY1 = [
sub {
BEGIN {
$^H{'strict/subs'} = undef;
$^H{'strict/refs'} = undef;
$^H{'strict/vars'} = undef;
}
$x;
},
sub {
BEGIN {
$^H{'strict/subs'} = undef;
$^H{'strict/refs'} = undef;
$^H{'strict/vars'} = undef;
}
$x_eclipse_1;
},
sub {
BEGIN {
$^H{'strict/subs'} = undef;
$^H{'strict/refs'} = undef;
$^H{'strict/vars'} = undef;
}
$1_foiled_x;
},
sub {
BEGIN {
$^H{'strict/subs'} = undef;
$^H{'strict/refs'} = undef;
$^H{'strict/vars'} = undef;
}
$1_foiled_x_eclipse_1;
}
];
EXPECT
# Failed test 'EclipseName'
# at t/test_helper.pl line 558.
Got <<'EXPECT';
my ($x,$x_eclipse_1,$x_eclipse_1_muhaha_1,$x_muhaha_1);
$x = undef;
$x_eclipse_1 = undef;
$x_eclipse_1_muhaha_1 = undef;
$x_muhaha_1 = undef;
$ARRAY1 = [
sub {
BEGIN {
$^H{'strict/subs'} = undef;
$^H{'strict/refs'} = undef;
$^H{'strict/vars'} = undef;
}
$x;
},
sub {
BEGIN {
$^H{'strict/subs'} = undef;
$^H{'strict/refs'} = undef;
$^H{'strict/vars'} = undef;
}
$x_eclipse_1;
},
sub {
BEGIN {
$^H{'strict/subs'} = undef;
$^H{'strict/refs'} = undef;
$^H{'strict/vars'} = undef;
}
$x_muhaha_1;
},
sub {
BEGIN {
$^H{'strict/subs'} = undef;
$^H{'strict/refs'} = undef;
$^H{'strict/vars'} = undef;
}
$x_eclipse_1_muhaha_1;
}
];
EXPECT
# Failed test 'EclipseName 2'
# at t/test_helper.pl line 558.
# Looks like you failed 13 tests of 14.
t/lexicals.t ........
Dubious, test returned 13 (wstat 3328, 0xd00)
Failed 13/14 subtests
t/locked.t .......... ok
# Failed test ''
# at t/test_helper.pl line 114.
# Looks like you failed 1 test of 7.
t/madness.t .........
Dubious, test returned 1 (wstat 256, 0x100)
Failed 1/7 subtests
t/madness_w.t ....... ok
# Failed test 'Named Vars '
# at t/test_helper.pl line 340.
# Failed test 'Named Vars Refs'
# at t/test_helper.pl line 340.
# Looks like you failed 2 tests of 50.
t/names.t ...........
Dubious, test returned 2 (wstat 512, 0x200)
Failed 2/50 subtests
Got <<'EXPECT';
$T1 = [
[
0,
1,
2,
3,
4,
'V: $T1->[1]',
\do { my $v = 'V: $T1->[0][7]' },
\do { my $v = 'V: $T1->[0][6]' },
sub {
BEGIN {
$^H{'strict/subs'} = undef;
$^H{'strict/refs'} = undef;
$^H{'strict/vars'} = undef;
}
die;
},
do{ require Symbol; Symbol::gensym },
\*::foofoo
],
{
a => 'b',
array => 'V: $T1->[0]',
c => 'V: $T1->[0][8]',
gv => 'V: $T1->[0][10]',
r1 => 'V: $T1->[0][6]',
r2 => 'V: $T1->[0][7]'
}
];
$T1->[0][5] = $T1->[1];
${$T1->[0][6]} = $T1->[0][7];
${$T1->[0][7]} = $T1->[0][6];
$T1->[1]{array} = $T1->[0];
$T1->[1]{c} = $T1->[0][8];
$T1->[1]{gv} = $T1->[0][10];
$T1->[1]{r1} = $T1->[0][6];
$T1->[1]{r2} = $T1->[0][7];
*::foofoo = \do { my $v = 'V: *::foofoo{ARRAY}' };
*::foofoo = [
( 'foo' ) x 2
];
${*::foofoo} = *::foofoo{ARRAY};
bless( $T1->[0][6], 'T' );
bless( $T1->[0][7], 'T' );
bless( $T1->[0][8], 'T' );
bless( $T1->[0][9], 'T' );
bless( $T1->[0][10], 'T' );
bless( $T1->[0], 'T' );
bless( $T1->[1], 'T' );
bless( $T1, 'T' );
bless( *::foofoo{ARRAY}, 'T' );
EXPECT
# Failed test 'overloading madness'
# at t/test_helper.pl line 558.
# Looks like you failed 1 test of 7.
t/overload.t ........
Dubious, test returned 1 (wstat 256, 0x100)
Failed 1/7 subtests
t/readonly.t ........ ok
t/refaddr.t ......... ok
t/refcount.t ........ ok
t/refelem.t ......... ok
t/reftype.t ......... ok
t/sortkeys.t ........ ok
t/tree.t ............ ok
t/usage.t ........... ok
t/xs_subs.t ......... ok
Test Summary Report
-------------------
t/dump.t (Wstat: 256 Tests: 49 Failed: 1)
Failed test: 3
Non-zero exit status: 1
t/lexicals.t (Wstat: 3328 Tests: 14 Failed: 13)
Failed tests: 1-6, 8-14
Non-zero exit status: 13
t/madness.t (Wstat: 256 Tests: 7 Failed: 1)
Failed test: 7
Non-zero exit status: 1
t/names.t (Wstat: 512 Tests: 50 Failed: 2)
Failed tests: 5-6
Non-zero exit status: 2
t/overload.t (Wstat: 256 Tests: 7 Failed: 1)
Failed test: 7
Non-zero exit status: 1
Files=23, Tests=362, 3 wallclock secs ( 0.10 usr 0.01 sys + 2.36 cusr 0.22 csys = 2.69 CPU)
Result: FAIL
Failed 5/23 test programs. 18/362 subtests failed.
------------------------------
PREREQUISITES
------------------------------
Prerequisite modules loaded:
requires:
Module Need Have
------------------ ----- --------
B 0 1.32
B::Deparse 0 1.11
B::Utils 0 0.17
Data::Dumper 0 2.135_01
DynaLoader 0 1.14
Exporter 0 5.66
Hash::Util 0 0.11
IO::File 0 1.16
overload 0 1.16
re 0 0.18
strict 0 1.06
Symbol 0 1.07
Text::Abbrev 0 1.02
Text::Balanced 0 2.02
vars 0 1.02
warnings 0 1.12
warnings::register 0 1.02
build_requires:
Module Need Have
------------------ ----- --------
B::Deparse 0 1.11
base 0 2.18
Carp 0 1.24
Config 0 0
Data::Dumper 0 2.135_01
Devel::Peek 0 1.08
ExtUtils::CBuilder 0 0.280205
overload 0 1.16
re 0 0.18
strict 0 1.06
Symbol 0 1.07
Test::More 0 0.98
Text::Abbrev 0 1.02
utf8 0 1.09
vars 0 1.02
warnings 0 1.12
configure_requires:
Module Need Have
------------------ ----- --------
ExtUtils::Depends 0 0.304
Module::Build 0 0.39_01
perl 5.006 5.015006
------------------------------
ENVIRONMENT AND OTHER CONTEXT
------------------------------
Environment variables:
AUTOMATED_TESTING = 1
LANG = en_US.UTF-8
LANGUAGE = en_US:en
PATH = /home/sand/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games:/usr/local/perl/bin:/usr/X11/bin:/sbin:/usr/sbin
PERL5LIB = /tmp/loop_over_bdir-rkNpbF/Sepia-0.992-aV9LI3/blib/arch:/tmp/loop_over_bdir-rkNpbF/Sepia-0.992-aV9LI3/blib/lib:/tmp/loop_over_bdir-rkNpbF/ProjectBuilder-0.11.3-reNR42/blib/arch:/tmp/loop_over_bdir-rkNpbF/ProjectBuilder-0.11.3-reNR42/blib/lib
PERL5OPT =
PERL5_CPANPLUS_IS_RUNNING = 15627
PERL5_CPAN_IS_RUNNING = 15627
PERL_MM_USE_DEFAULT = 1
SHELL = /usr/bin/zsh
TERM = screen
Perl special variables (and OS-specific diagnostics, for MSWin32):
$^X = /home/sand/src/perl/repoperls/installed-perls/perl/v5.15.6-58-g38fb5ff/127e/bin/perl
$UID/$EUID = 1005 / 1005
$GID = 1005 1005
$EGID = 1005 1005
Perl module toolchain versions installed:
Module Have
------------------- --------
CPAN 1.9800
CPAN::Meta 2.112621
Cwd 3.39_01
ExtUtils::CBuilder 0.280205
ExtUtils::Command 1.17
ExtUtils::Install 1.57
ExtUtils::MakeMaker 6.63_02
ExtUtils::Manifest 1.60
ExtUtils::ParseXS 3.08
File::Spec 3.39_01
JSON 2.53
JSON::PP 2.27200
Module::Build 0.39_01
Module::Signature 0.68
Parse::CPAN::Meta 1.4401
Test::Harness 3.23
Test::More 0.98
YAML n/a
YAML::Syck 1.19
version 0.96
--
Summary of my perl5 (revision 5 version 15 subversion 6) configuration:
Commit id: 38fb5ff40a5a46393de9cee6f9aa6c9ccd151512
Platform:
osname=linux, osvers=2.6.32-5-amd64, archname=x86_64-linux-ld
uname='linux k83 2.6.32-5-amd64 #1 smp thu nov 3 03:41:26 utc 2011 x86_64 gnulinux '
config_args='-Dprefix=/home/src/perl/repoperls/installed-perls/perl/v5.15.6-58-g38fb5ff/127e -Dmyhostname=k83 -Dinstallusrbinperl=n -Uversiononly -Dusedevel -des -Ui_db -Uuseithreads -Duselongdouble -DDEBUGGING=-g'
hint=recommended, useposix=true, d_sigaction=define
useithreads=undef, usemultiplicity=undef
useperlio=define, d_sfio=undef, uselargefiles=define, usesocks=undef
use64bitint=define, use64bitall=define, uselongdouble=define
usemymalloc=n, bincompat5005=undef
Compiler:
cc='cc', ccflags ='-fno-strict-aliasing -pipe -fstack-protector -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64',
optimize='-O2 -g',
cppflags='-fno-strict-aliasing -pipe -fstack-protector -I/usr/local/include'
ccversion='', gccversion='4.4.5', gccosandvers=''
intsize=4, longsize=8, ptrsize=8, doublesize=8, byteorder=12345678
d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=16
ivtype='long', ivsize=8, nvtype='long double', nvsize=16, Off_t='off_t', lseeksize=8
alignbytes=16, prototype=define
Linker and Libraries:
ld='cc', ldflags =' -fstack-protector -L/usr/local/lib'
libpth=/usr/local/lib /lib/../lib /usr/lib/../lib /lib /usr/lib /lib64 /usr/lib64
libs=-lnsl -ldb -ldl -lm -lcrypt -lutil -lc
perllibs=-lnsl -ldl -lm -lcrypt -lutil -lc
libc=/lib/libc-2.11.2.so, so=so, useshrplib=false, libperl=libperl.a
gnulibc_version='2.11.2'
Dynamic Linking:
dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef, ccdlflags='-Wl,-E'
cccdlflags='-fPIC', lddlflags='-shared -O2 -g -L/usr/local/lib -fstack-protector'
Characteristics of this binary (from libperl):
Compile-time options: HAS_TIMES PERLIO_LAYERS PERL_DONT_CREATE_GVSV
PERL_MALLOC_WRAP PERL_PRESERVE_IVUV PERL_USE_DEVEL
USE_64_BIT_ALL USE_64_BIT_INT USE_LARGE_FILES
USE_LOCALE USE_LOCALE_COLLATE USE_LOCALE_CTYPE
USE_LOCALE_NUMERIC USE_LONG_DOUBLE USE_PERLIO
USE_PERL_ATOF
Built under linux
Compiled at Dec 23 2011 06:33:12
%ENV:
PERL5LIB="/tmp/loop_over_bdir-rkNpbF/Sepia-0.992-aV9LI3/blib/arch:/tmp/loop_over_bdir-rkNpbF/Sepia-0.992-aV9LI3/blib/lib:/tmp/loop_over_bdir-rkNpbF/ProjectBuilder-0.11.3-reNR42/blib/arch:/tmp/loop_over_bdir-rkNpbF/ProjectBuilder-0.11.3-reNR42/blib/lib"
PERL5OPT=""
PERL5_CPANPLUS_IS_RUNNING="15627"
PERL5_CPAN_IS_RUNNING="15627"
PERL_MM_USE_DEFAULT="1"
@INC:
/tmp/loop_over_bdir-rkNpbF/Sepia-0.992-aV9LI3/blib/arch
/tmp/loop_over_bdir-rkNpbF/Sepia-0.992-aV9LI3/blib/lib
/tmp/loop_over_bdir-rkNpbF/ProjectBuilder-0.11.3-reNR42/blib/arch
/tmp/loop_over_bdir-rkNpbF/ProjectBuilder-0.11.3-reNR42/blib/lib
/home/src/perl/repoperls/installed-perls/perl/v5.15.6-58-g38fb5ff/127e/lib/site_perl/5.15.6/x86_64-linux-ld
/home/src/perl/repoperls/installed-perls/perl/v5.15.6-58-g38fb5ff/127e/lib/site_perl/5.15.6
/home/src/perl/repoperls/installed-perls/perl/v5.15.6-58-g38fb5ff/127e/lib/5.15.6/x86_64-linux-ld
/home/src/perl/repoperls/installed-perls/perl/v5.15.6-58-g38fb5ff/127e/lib/5.15.6
.