Skip Menu |

This queue is for tickets about the Module-Build CPAN distribution.

Report information
The Basics
Id: 47134
Status: resolved
Priority: 0/
Queue: Module-Build

People
Owner: Nobody in particular
Requestors: csjewell [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.33_02
Fixed in: (no value)



Subject: new PL_files test fails under Strawberry Perl
I figure the best I can do for this one is to run the test by itself and show you what happens... C:\Documents and Settings\Curtis\Desktop\Perl Work\Module-Build>perl -Mblib t\PL_files.t 1..6 Checking whether your kit is complete... Looks good Checking prerequisites... Looks good Creating new 'Build' script for 'Simple' version '0.01' Copying lib\Simple.pm -> blib\lib\Simple.pm Copying lib\Bar.pm -> blib\lib\Bar.pm Copying bin\foo.PL -> blib\script\foo.PL Copying bin\foo -> blib\script\foo Installing test_install\lib\perl5\Bar.pm Installing test_install\lib\perl5\Simple.pm Installing test_install\bin\foo Installing test_install\bin\foo.bat Installing test_install\bin\foo.PL Writing test_install\lib\perl5\MSWin32-x86-multi-thread\auto\Simple\.packlist ok 1 - Generated PL_files installed from bin ok 2 - and from lib not ok 3 - PL_files not installed from bin # Failed test 'PL_files not installed from bin' # at t\PL_files.t line 48. ok 4 - nor from lib ok 5 - Generated bin contains correct content ok 6 - so does the lib # Looks like you failed 1 test of 6. (Running under Strawberry Perl 5.10.0.5) Summary of my perl5 (revision 5 version 10 subversion 0) configuration: Platform: osname=MSWin32, osvers=5.1, archname=MSWin32-x86-multi-thread uname='' ... Built under MSWin32 Compiled at Apr 30 2009 14:30:10 @INC: C:/strawberry/perl/lib C:/strawberry/perl/site/lib .
Forward/back slash issue. PL_files is given in unix-style forward slashes and code in script_files() compares to files from _files_in() which are File::Spec generated, thus have backslashes. Fixed in trunk.