Tue Jun 02 14:31:18 2015lackhoff [...] gmx.de - Ticket created
Subject:
Test failures in 10-tablify.t under Windows
Date:
Tue, 2 Jun 2015 20:31:07 +0200
To:
bug-Text-RecordParser [...] rt.cpan.org
From:
lackhoff [...] gmx.de
Due to different shell quoting semantics under Windows all the backtick-tests in 10-tablify.t fail under Windows.
The failure can be fixed by adding this line:
$test->{'args'} =~ tr/'"/"'/ if $^O eq 'MSWin32';
just before the folloing line (should be line 204):
my $out = `$command $test->{'args'}`;
within the test file.