Back
From: metabase:user:322078bc-2aae-11df-837a-5e0a49663a4f
Subject: PASS HTML-Expander-2.7 v5.12.3 OpenBSD
Date: 2013-01-30T14:15:55Z
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 CADE,
This is a computer-generated error report created automatically by
CPANPLUS, version 0.9134. Testers personal comments may appear
at the end of this report.
Thank you for uploading your work to CPAN. Congratulations!
All tests were successful.
TEST RESULTS:
Below is the error stack from stage 'make test':
PERL_DL_NONLAZY=1 /home/cpan/pit/thr/perl-5.12.3/bin/perl "-Iblib/lib" "-Iblib/arch" test.pl
1..1
# Running under perl version 5.012003 for openbsd
# Current time local: Wed Jan 30 14:15:55 2013
# Current time GMT: Wed Jan 30 14:15:55 2013
# Using Test.pm version 1.25_02
DEBUG: expand_var: [!mode] = ()
$VAR1 = {
'VAR::!mode' => 1
};
DEBUG: expand_var: [!mode] = ()
$VAR1 = {
'VAR::!mode' => 1
};
DEBUG: expand_var: [TEST] = ()
$VAR1 = {
'VAR::TEST' => 1
};
DEBUG: expand_var: [TEST] = (opala!)
$VAR1 = {
'VAR::TEST' => 1
};
DEBUG: expand_var: [XXX] = (this XXX is <var name=LLL><p>)
$VAR1 = {
'VAR::XXX' => 1
};
DEBUG: expand_var: [LLL] = (low level var)
$VAR1 = {
'VAR::LLL' => 1,
'VAR::XXX' => 1
};
DEBUG: expand_var: [ZZZ] = (this ZZZ is <var name=LLL><p>)
$VAR1 = {
'VAR::ZZZ' => 1
};
DEBUG: expand_var: [LLL] = (low level var)
$VAR1 = {
'VAR::LLL' => 1,
'VAR::ZZZ' => 1
};
<pre>(current mode is '')</pre>
<p><p><h1><font color=#fff>This is me</font></h1>
<box>(cyrrent mode is '')</box>
<h1><font color=>empty</font></h1>
1.
2.opala!
3.opala!
<p>
this XXX is low level var<p>
<p>
this ZZZ is low level var<p>
DEBUG: expand_var: [HOME] = ()
$VAR1 = {
'VAR::HOME' => 1
};
Wed Jan 30 14:15:55 GMT 2013
DEBUG: expand_var: [HOME] = ()
$VAR1 = {
'VAR::HOME' => 1,
'INC::./test.pl' => 1
};
DEBUG: expand_var: [LLL] = (low level var)
$VAR1 = {
'VAR::LLL' => 1,
'INC::./test.pl' => 1
};
DEBUG: expand_var: [LLL] = (low level var)
$VAR1 = {
'VAR::LLL' => 1,
'INC::./test.pl' => 1
};
DEBUG: expand_var: [!mode] = ()
$VAR1 = {
'VAR::!mode' => 1,
'INC::./test.pl' => 1
};
DEBUG: expand_var: [!mode] = ()
$VAR1 = {
'VAR::!mode' => 1,
'INC::./test.pl' => 1
};
DEBUG: expand_var: [TEST] = (opala!)
$VAR1 = {
'VAR::TEST' => 1,
'INC::./test.pl' => 1
};
DEBUG: expand_var: [TEST] = (opala!)
$VAR1 = {
'VAR::TEST' => 1,
'INC::./test.pl' => 1
};
DEBUG: expand_var: [XXX] = (this XXX is <var name=LLL><p>)
$VAR1 = {
'VAR::XXX' => 1,
'INC::./test.pl' => 1
};
DEBUG: expand_var: [LLL] = (low level var)
$VAR1 = {
'VAR::LLL' => 1,
'VAR::XXX' => 1,
'INC::./test.pl' => 1
};
DEBUG: expand_var: [ZZZ] = (this ZZZ is <var name=LLL><p>)
$VAR1 = {
'VAR::ZZZ' => 1,
'INC::./test.pl' => 1
};
DEBUG: expand_var: [LLL] = (low level var)
$VAR1 = {
'VAR::LLL' => 1,
'INC::./test.pl' => 1,
'VAR::ZZZ' => 1
};
use Test;
BEGIN { plan tests => 1 };
use HTML::Expander;
use strict;
my $ex = new HTML::Expander;
$ex->{ 'WARNINGS' }++;
$ex->define_tag( 'main', '<h1><font color=>', '<h1><font color=%c>' );
$ex->define_tag( 'main', '</font></h1>', '</font></h1>' );
$ex->mode_copy( 'new', 'main' );
$ex->define_tag( 'new', '<h1>', '<p><h1>' );
$ex->define_tag( 'new', '<box>', '<pre>' );
$ex->define_tag( 'new', '</box>', '</pre>' );
$ex->define_var( 'main', 'LLL' => 'low level var' );
$ex->define_var( 'main', 'XXX' => 'this XXX is low level var<p>' );
$ex->define_var( 'main', 'ZZZ' => 'this ZZZ is low level var<p>' );
print $ex->expand( "
<pre>(current mode is '')</pre>
<p><p><h1><font color=#fff>This is me</font></h1>
<box>(cyrrent mode is '')</box>
<h1><font color=>empty</font></h1>
1.opala!
2.opala!
3.opala!
<p>
this XXX is low level var<p>
<p>
this ZZZ is low level var<p>
\n" );
$ex->{ 'EXEC_TAG_ALLOWED' } = 1;
print $ex->expand( 'Wed Jan 30 14:15:55 GMT 2013
' ), "\n";
$ex->add_inc_paths( '.' );
print $ex->expand( '' ), "\n";
print "done.";
use Data::Dumper;
print Dumper( $ex );
ok(1); # there is no bad condition check yet
done.$VAR1 = bless( {
'VARS' => {
'new' => {},
'main' => {
'LLL' => 'low level var',
'XXX' => 'this XXX is <var name=LLL><p>',
'ZZZ' => 'this ZZZ is <var name=LLL><p>'
}
},
'INC' => {
'.' => 1
},
'WARNINGS' => 1,
'EXEC_TAG_ALLOWED' => 1,
'ENV' => {
'TEST' => 'opala!',
'!MODE' => 'main'
},
'MODE' => [],
'TAGS' => {
'new' => {
'<h1>' => '<p><h1>',
'<name>' => '<h1><font color=%c>',
'</box>' => '</pre>',
'</name>' => '</font></h1>',
'<box>' => '<pre>'
},
'main' => {
'<name>' => '<h1><font color=%c>',
'</name>' => '</font></h1>'
}
}
}, 'HTML::Expander' );
ok 1
PREREQUISITES:
Here is a list of prerequisites you specified and versions we
managed to load:
Module Name Have Want
ExtUtils::MakeMaker 6.64 0
Perl module toolchain versions installed:
Module Name Have
CPANPLUS 0.9134
CPANPLUS::Dist::Build 0.70
Cwd 3.40
ExtUtils::CBuilder 0.280205
ExtUtils::Command 1.16
ExtUtils::Install 1.55
ExtUtils::MakeMaker 6.64
ExtUtils::Manifest 1.61
ExtUtils::ParseXS 3.18
File::Spec 3.40
Module::Build 0.4003
Pod::Parser 1.37
Pod::Simple 3.14
Test::Harness 3.26
Test::More 0.98
version 0.9901
******************************** 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 CPANPLUS::Dist::YACSmoke 0.84.
Powered by minismokebox version 0.54
------------------------------
ENVIRONMENT AND OTHER CONTEXT
------------------------------
Environment variables:
AUTOMATED_TESTING = 1
PATH = /home/cpan/bin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/X11R6/bin:/usr/local/bin:/usr/local/sbin:/usr/games:.
PERL5LIB = :/home/cpan/pit/thr/conf/perl-5.12.3/.cpanplus/5.12.3/build/HTML-Expander-2.7/blib/lib:/home/cpan/pit/thr/conf/perl-5.12.3/.cpanplus/5.12.3/build/HTML-Expander-2.7/blib/arch
PERL5_CPANPLUS_IS_RUNNING = 24042
PERL5_CPANPLUS_IS_VERSION = 0.9134
PERL5_MINISMOKEBOX = 0.54
PERL5_YACSMOKE_BASE = /home/cpan/pit/thr/conf/perl-5.12.3
PERL_EXTUTILS_AUTOINSTALL = --defaultdeps
PERL_MM_USE_DEFAULT = 1
SHELL = /usr/local/bin/bash
TERM = screen
Perl special variables (and OS-specific diagnostics, for MSWin32):
Perl: $^X = /home/cpan/pit/thr/perl-5.12.3/bin/perl
UID: $< = 1001
EUID: $> = 1001
GID: $( = 1001 1001
EGID: $) = 1001 1001
-------------------------------
--
Summary of my perl5 (revision 5 version 12 subversion 3) configuration:
Platform:
osname=openbsd, osvers=5.1, archname=OpenBSD.i386-openbsd-thread-multi
uname='openbsd oatcake.bingosnet.co.uk 5.1 generic#160 i386 '
config_args='-des -Dprefix=/home/cpan/pit/thr/perl-5.12.3 -Dusethreads'
hint=recommended, useposix=true, d_sigaction=define
useithreads=define, usemultiplicity=define
useperlio=define, d_sfio=undef, uselargefiles=define, usesocks=undef
use64bitint=undef, use64bitall=undef, uselongdouble=undef
usemymalloc=y, bincompat5005=undef
Compiler:
cc='cc', ccflags ='-pthread -fno-strict-aliasing -pipe -fstack-protector -I/usr/local/include',
optimize='-O2',
cppflags='-pthread -fno-strict-aliasing -pipe -fstack-protector -I/usr/local/include'
ccversion='', gccversion='4.2.1 20070719 ', gccosandvers='openbsd5.1'
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 ='-pthread -Wl,-E -fstack-protector -L/usr/local/lib'
libpth=/usr/local/lib /usr/lib
libs=-lgdbm -lm -lutil -lc
perllibs=-lm -lutil -lc
libc=/usr/lib/libc.so.62.0, so=so, useshrplib=false, libperl=libperl.a
gnulibc_version=''
Dynamic Linking:
dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef, ccdlflags=' '
cccdlflags='-DPIC -fPIC ', lddlflags='-shared -fPIC -L/usr/local/lib -fstack-protector'
Characteristics of this binary (from libperl):
Compile-time options: MULTIPLICITY MYMALLOC PERL_DONT_CREATE_GVSV
PERL_IMPLICIT_CONTEXT PERL_MALLOC_WRAP USE_ITHREADS
USE_LARGE_FILES USE_PERLIO USE_PERL_ATOF
USE_REENTRANT_API
Built under openbsd
Compiled at May 3 2012 23:12:14
%ENV:
PERL5LIB=":/home/cpan/pit/thr/conf/perl-5.12.3/.cpanplus/5.12.3/build/HTML-Expander-2.7/blib/lib:/home/cpan/pit/thr/conf/perl-5.12.3/.cpanplus/5.12.3/build/HTML-Expander-2.7/blib/arch"
PERL5_CPANPLUS_IS_RUNNING="24042"
PERL5_CPANPLUS_IS_VERSION="0.9134"
PERL5_MINISMOKEBOX="0.54"
PERL5_YACSMOKE_BASE="/home/cpan/pit/thr/conf/perl-5.12.3"
PERL_EXTUTILS_AUTOINSTALL="--defaultdeps"
PERL_MM_USE_DEFAULT="1"
@INC:
/home/cpan/pit/thr/conf/perl-5.12.3/.cpanplus/5.12.3/build/HTML-Expander-2.7/blib/lib
/home/cpan/pit/thr/conf/perl-5.12.3/.cpanplus/5.12.3/build/HTML-Expander-2.7/blib/arch
/home/cpan/pit/thr/perl-5.12.3/lib/site_perl/5.12.3/OpenBSD.i386-openbsd-thread-multi
/home/cpan/pit/thr/perl-5.12.3/lib/site_perl/5.12.3
/home/cpan/pit/thr/perl-5.12.3/lib/5.12.3/OpenBSD.i386-openbsd-thread-multi
/home/cpan/pit/thr/perl-5.12.3/lib/5.12.3
.