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.