binmode FH in test (RT #125995)
authorMarius Gavrilescu <marius@ieval.ro>
Tue, 11 Jun 2019 12:13:16 +0000 (15:13 +0300)
committerMarius Gavrilescu <marius@ieval.ro>
Tue, 11 Jun 2019 13:02:37 +0000 (16:02 +0300)
t/01-uncompress.t

index c29fa6e28401f0b7015ef49d170f2d633073f284..f67c5e478bf054f122a0ebb609115b772983c09d 100644 (file)
@@ -15,6 +15,7 @@ for my $test (<brotli/tests/testdata/*.compressed*>) {
        is $decoded, $expected, "$test";
 
        open FH, '<', $test;
+       binmode FH;
        my $unbro = IO::Uncompress::Brotli->create;
        my ($buf, $out);
        until (eof FH) {
This page took 0.010931 seconds and 4 git commands to generate.