Skip to content

Commit

Permalink
Skip failing DD tests under 5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Father Chrysostomos committed Dec 26, 2011
1 parent 6c512c3 commit 8ec7030
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion dist/Data-Dumper/t/dumper.t
Expand Up @@ -1463,7 +1463,13 @@ EOT

$foo = [ join "", map chr, 0..255, 0x20ac ];
local $Data::Dumper::Useqq = 1;
TEST q(Dumper($foo)), 'All latin1 characters with utf8 flag including a wide character';
if ($] < 5.007) {
print "not ok " . (++$TNUM) . " # TODO - fails under 5.6\n" for 1..3;
}
else {
TEST q(Dumper($foo)),
'All latin1 characters with utf8 flag including a wide character';
}
for (1..3) { print "not ok " . (++$TNUM) . " # TODO NYI\n" if $XS } # TEST q(Data::Dumper::DumperX($foo)) if $XS;
}

Expand Down

0 comments on commit 8ec7030

Please sign in to comment.