can get killed if TEST's environment has made it default all opens to
UTF-8 but the TAP is not UTF-8.
p4raw-id: //depot/perl@28192
open(RESULTS, $compile_cmd)
or print "can't compile '$compile_cmd': $!.\n";
}
+ # Our environment may force us to use UTF-8, but we can't be sure that
+ # anything we're reading from will be generating (well formed) UTF-8
+ # This may not be the best way - possibly we should unset ${^OPEN} up
+ # top?
+ binmode RESULTS;
my $failure;
my $next = 0;