Re: [Module-build-general] Tests on perl 5.005
Status: Beta
Brought to you by:
kwilliams
|
From: Dave R. <au...@ur...> - 2003-05-09 18:54:14
|
On Fri, 9 May 2003, Ken Williams wrote: > Does someone have a perl 5.005 that they could test the current > Module::Build from CVS on? I'd like to close bug 2302 at > http://rt.cpan.org/Ticket/Display.html?id=2302 . I do, but the current CVS is quite broken. With the patch below sig it gives this with 5.00503: t/basic.........ok t/compat........ok t/runthrough....ok 8/19Module::Info was not available, no 'provides' will be created in META.yml at blib/lib/Module/Build/Base.pm line 1186. Use of uninitialized value at /home/autarch/Module-Build/blib/lib/Module/Build/Base.pm line 627. Use of uninitialized value at /home/autarch/Module-Build/blib/lib/Module/Build/Base.pm line 628. t/runthrough....ok 10/19Module::Info was not available, no 'provides' will be created in META.yml at blib/lib/Module/Build/Base.pm line 1186. t/runthrough....ok 16/19Warning: You do not have permissions to install into /usr/local/perl5.00503/lib/site_perl/5.005 at /usr/local/perl5.00503/lib/5.00503/ExtUtils/Install.pm line 61. t/runthrough....FAILED test 18 Failed 1/19 tests, 94.74% okay t/xs............ok Everything passes with 5.8.0, but I still get an uninit warning at line 628. /*======================= House Absolute Consulting www.houseabsolute.com =======================*/ --- Base.pm.~1.110.~ 2003-05-08 11:50:30.000000000 -0500 +++ Base.pm 2003-05-09 13:50:32.000000000 -0500 @@ -569,7 +569,7 @@ }, ); -\$build->dispatch; +\$build->dispatch(\@ARGV); EOF } |