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. -- 1..14 not ok 1 not ok 2 not ok 3 not ok 4 ok 5 not ok 6 not ok 7 not ok 8 not ok 9 not ok 10 not ok 11 ok 12 ok 13 ok 14 Fails because of a Unix-centric assumption about paths in Size.pm on line 134. Here's the fix using File::Spec (untested as yet on Unix): *** Size.pm- Wed Apr 26 09:28:41 2000 --- Size.pm Wed Apr 26 09:40:52 2000 *************** *** 14,19 **** --- 14,20 ---- use strict; use Cwd 'cwd'; + use File::Spec; use Symbol; use AutoLoader 'AUTOLOAD'; use Exporter; *************** *** 131,137 **** } else { ! $stream = cwd . "/$stream" unless ($stream =~ m|^/|); $mtime = (stat $stream)[9]; if (-e "$stream" and exists $cache{$stream}) { --- 132,139 ---- } else { ! #$stream = cwd . "/$stream" unless ($stream =~ m|^/|); ! $stream = File::Spec->catfile(cwd(),$stream) unless File::Spec->file_name_is_absolute($stream); $mtime = (stat $stream)[9]; if (-e "$stream" and exists $cache{$stream}) { With this patch, all tests pass. -- Summary of my (5.0 patchlevel 4 subversion 0) configuration: Platform: osname=MacOS, osvers=9.0.4, archname=MacOS_PPC uname='' hint=, useposix=true, d_sigaction= bincompat3= useperlio= d_sfio= Compiler: cc='C', optimize='', gccversion= cppflags='' ccflags ='' stdchar='', d_stdstdio=define, usevfork= voidflags=, castflags=0, d_casti32=32, d_castneg=define intsize=32, alignbytes=, usemymalloc=, randbits= Linker and Libraries: ld='', ldflags ='' libpth= libs= libc=, so= useshrplib=, libperl= Dynamic Linking: dlsrc=, dlext=, d_dlsymun=, ccdlflags='' cccdlflags='', lddlflags=''
