Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Devel-Cover CPAN distribution.

Report information
The Basics
Id: 75633
Status: resolved
Priority: 0/
Queue: Devel-Cover

People
Owner: Nobody in particular
Requestors: dcoupal [...] cisco.com
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.64
Fixed in: (no value)



Subject: Directory names with ++ not supported
In Cover.pm at line 472: $file =~ s|^$Dir/|| if defined $Dir; If the directory name has '++' in its name it will blow up the regex. The fix is to have: $file =~ s|^\Q$Dir\E/|| if defined $Dir;
Thanks for this report. The fix has been applied as 6f6e321.