The distribution
    Mail-Box-1.110
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.

-- 
t/2mbox1r...........   * Mbox status BETA
ok
t/2mbox2w...........ok
t/2mbox3d...........ok
t/2mbox4a...........ok
t/2mbox5c...........ok
t/2mbox6t...........ok
t/3mh1r.............   * MH status BETA
ok
t/3mh2w.............ok
t/3mh3a.............ok
t/3mh5c.............Can't call method "print" on unblessed reference at 
blib/lib/Mail/Box/Mbox/Message.pm line 160, <GEN0> chunk 3351.
dubious
        Test returned status 255 (wstat 65280, 0xff00)
DIED. FAILED tests 1-19
        Failed 19/19 tests, 0.00% okay
t/3mh6t.............ok
t/3mh7s.............ok
t/7mgr..............ok
t/8tie..............ok
t/9lock.............ok
Failed Test  Status Wstat Total Fail  Failed  List of failed
-------------------------------------------------------------------------------
t/3mh5c.t       255 65280    19   19 100.00%  1-19
Failed 1/15 test scripts, 93.33% okay. 19/184 subtests failed, 89.67% okay.

The offending line is
        $out->print($msg);
$out is a glob (*main::CREATE). IIRC equivalence between globs
and IO objects was introduced in 5.6.0. I hope there is no reason
Mail::Box does not support perl < 5.6.0 except oversight...

I have no 5.6.0 or 5.6.1 installed right now, so this must do:
/opt/perl-5.6.1-TRIAL2/bin/perl -e 'use IO::Handle; $out = \*STDOUT; 
$out->print("works\n");'
works
perl5.00503 -e 'use IO::Handle; $out = \*STDOUT; $out->print("works\n");'
Can't call method "print" on unblessed reference at -e line 1.
perl5.00503 -e 'use IO::Handle; $out = \*STDOUT; print $out "works\n";'
works
--

Summary of my perl5 (5.0 patchlevel 5 subversion 3) configuration:
  Platform:
    osname=solaris, osvers=2.8, archname=i86pc-solaris
    uname='sunos alanya.lupe-christoph.de 5.8 generic_108529-01 i86pc i386 i86pc '
    hint=recommended, useposix=true, d_sigaction=define
    usethreads=undef useperlio=define d_sfio=define
  Compiler:
    cc='gcc -B/usr/ccs/bin/', optimize='-O', gccversion=2.95.2 19991024 (release)
    cppflags='-I/opt/local/include/bind -I/opt/local/include'
    ccflags ='-I/opt/local/include/bind -I/opt/local/include'
    stdchar='char', d_stdstdio=define, usevfork=false
    intsize=4, longsize=4, ptrsize=4, doublesize=8
    d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=12
    alignbytes=4, usemymalloc=y, prototype=define
  Linker and Libraries:
    ld='gcc -B/usr/ccs/bin/', ldflags ='-L/opt/local/i386/lib -R/opt/local/i386/lib'
    libpth=/opt/local/i386/lib /usr/ccs/lib /usr/lib
    libs=-lsfio -lsocket -lnsl -lgdbm -ldb -ldl -lm -lc -lcrypt -lbind
    libc=/lib/libc.so, so=so, useshrplib=false, libperl=libperl.a
  Dynamic Linking:
    dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef, ccdlflags=' '
    cccdlflags='-fPIC', lddlflags='-G -L/opt/local/i386/lib -R/opt/local/i386/lib'

Reply via email to