aboutsummaryrefslogtreecommitdiff
path: root/tests/runtests.pl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/runtests.pl')
-rwxr-xr-xtests/runtests.pl3
1 files changed, 2 insertions, 1 deletions
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;
}