Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Data-Compare CPAN distribution.

Report information
The Basics
Id: 45676
Status: resolved
Priority: 0/
Queue: Data-Compare

People
Owner: Nobody in particular
Requestors: matisse [...] spamcop.net
Cc:
AdminCc:

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



Subject: taint.t fails for PERL5LIB paths contaning spaces
The taint.t test script iterates over each path in PERL5LIB, but does not make allowances for those paths containing spaces. This fixes it: --- taint.t.dist 2009-05-03 14:36:37.000000000 -0700 +++ taint.t 2009-05-03 14:36:37.000000000 -0700 @@ -19,7 +19,7 @@ $^X, '-Tw', ( - map { "-I$_" } + map { qq{-I"$_" }} grep { -d $_ } # bleh, code-refs getting stringified split(/$Config{path_sep}/, $perl5lib) ),
Thanks, will be fixed in next release later today