2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-09-28 21:19:06 +00:00

Merge pull request #290 from ams-tschoening/test_needs_binmode

The kfo-PDF files for testing need to be copied using "binmode"…
This commit is contained in:
Jay Berkenbilt 2019-02-14 14:52:09 -05:00 committed by GitHub
commit 5916829715
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1675,6 +1675,7 @@ $n_tests += 4;
for (my $i = 1; $i <= 201; ++$i)
{
open(F, sprintf(">%03d-kfo.pdf", $i)) or die;
binmode F;
print F $content;
close(F);
}