Skip Menu |

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

Report information
The Basics
Id: 47589
Status: resolved
Priority: 0/
Queue: Devel-TraceUse

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

Bug Information
Severity: (no value)
Broken in: 1.00
Fixed in: 2.00



Subject: Plain text incorrectly used as regex pattern
In t/report.t like( $trace[0], qr/Modules used from $test_file/, 'trace output should include name of program' ); should be like( $trace[0], qr/Modules used from \Q$test_file/, 'trace output should include name of program' ); The regex attempts to match "t<TAB>racer<ANY>pl" instead of "t\tracer.pl" on systems where "\" is the directory separator.