Tune test to run in UTF-8 locales
Nick Ing-Simmons [Mon, 10 Jun 2002 09:51:16 +0000 (09:51 +0000)]
 - test file must be opened as :bytes or high-bit octets
   will be UTF-8 encoded on write in such locales, so
   will not read as expected.

p4raw-id: //depot/perlio@17159

ext/PerlIO/t/fallback.t

index 42a958d..1cefa0d 100644 (file)
@@ -48,8 +48,8 @@ close($fh);
 
 {
     no utf8;
-    open($fh,">$file") || die "File cannot be re-opened";
-    print $fh "£0.02\n";
+    open($fh,">:bytes",$file) || die "File cannot be re-opened";
+    print $fh "\xA30.02\n";
     close($fh);
 }