projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
0f2f9b7
)
Must close so that unlink works portably.
Jarkko Hietaniemi [Thu, 21 Aug 2003 18:22:22 +0000 (18:22 +0000)]
p4raw-id: //depot/perl@20807
t/io/utf8.t
patch
|
blob
|
blame
|
history
diff --git
a/t/io/utf8.t
b/t/io/utf8.t
index
6b189ee
..
50cc012
100755
(executable)
--- a/
t/io/utf8.t
+++ b/
t/io/utf8.t
@@
-306,6
+306,7
@@
ok( 1 );
open F, ">a";
binmode F, ":utf8";
syswrite(F, $a = chr(0x100));
+ close A;
is( ord($a), 0x100, '23428 syswrite should not downgrade scalar' );
like( $a, qr/^\w+/, '23428 syswrite should not downgrade scalar' );
}