From: Jarkko Hietaniemi Date: Sun, 18 Nov 2001 16:12:32 +0000 (+0000) Subject: Prepend a null byte to the test set. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c36dfd097901bc8706256b332ba0c494e1d2cbf6;p=p5sagit%2Fp5-mst-13.2.git Prepend a null byte to the test set. p4raw-id: //depot/perl@13071 --- diff --git a/t/io/utf8.t b/t/io/utf8.t index 2d74cff..d973a2a 100755 --- a/t/io/utf8.t +++ b/t/io/utf8.t @@ -188,8 +188,10 @@ unlink('a'); open F, ">a"; @a = map { chr(1 << ($_ << 2)) } 0..5; # 0x1, 0x10, .., 0x100000 +unshift @a, chr(0); # ... and a null byte in front just for fun print F @a; close F; + open F, "<:utf8", "a"; $a = 0; for (@a) { @@ -205,6 +207,7 @@ for (@a) { last; } } +close F; print "ok 26\n"; END { 1 while unlink "a" }