Subject: | Fail on Strawberry Perl 5.8.8 due to path separator in t/todo.t |
In t/todo.t, there's a comment that says:
my $SEP = '/'; # use forward slash even on Win32
but that's not true under Strawberry Perl. Instead, I recommend changing
test_err( "# Failed (TODO) test (t${SEP}todo.t at line 16)" );
to
test_err( "#\s+Failed \(TODO\) test.*?\n?.*?at t[/\\]todo\.t line
16.*\n?" );
(cribbing from Test::Builder::Tester _translate_Failed_check)
Alternatively, one would have to get Strawberry Perl to change its line
separators in Test::More output, which seems less likely.