From: Daniel Stenberg Date: Wed, 19 Mar 2003 09:26:29 +0000 (+0000) Subject: set binary mode for some file handling and it might work better on some X-Git-Tag: curl-7_10_4~38 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b125e8e23a0212dba4cc3c19a2b744c2241b74e1;p=curl set binary mode for some file handling and it might work better on some cygwin installations (using DOS-style files somehow?) --- diff --git a/tests/getpart.pm b/tests/getpart.pm index 7449be983..79287524e 100644 --- a/tests/getpart.pm +++ b/tests/getpart.pm @@ -95,6 +95,7 @@ sub loadtest { undef @xml; open(XML, "<$file") || return 1; # failure! + binmode XML; # for crapage systems, use binary while() { push @xml, $_; } diff --git a/tests/runtests.pl b/tests/runtests.pl index 20dcdbdef..eaaf9dff0 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -637,7 +637,8 @@ sub singletest { subVariables \$fileContent; # print "DEBUG: writing file " . $filename . "\n"; open OUTFILE, ">$filename"; - print OUTFILE $fileContent; + binmode OUTFILE; # for crapage systems, use binary + print OUTFILE $fileContent; close OUTFILE; }