Skip Menu |

This queue is for tickets about the Archive-Zip CPAN distribution.

Report information
The Basics
Id: 4214
Status: resolved
Priority: 0/
Queue: Archive-Zip

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

Bug Information
Severity: (no value)
Broken in: 1.08
Fixed in: (no value)



Subject: Test suite dosen't cope with spaces in build directory name
The test suite (respectively t/testex.t) fails when any directory in the build directory contains a space: C:\Dokumente und Einstellungen\Max\.cpan\build\Archive-Zip-1.08 The fix is to change runPerlCommand() in t/testex.t to quote all its arguments properly: sub runPerlCommand { my $libs = join ( ' -I', @INC ); my $cmd = qq{"$^X" "-I$libs" "-w" @_"}; my $output = qx($cmd); return wantarray ? ( $?, $output ) : $?; }