Add a test for Unicode split //. The #8267 was the cure.
Jarkko Hietaniemi [Sat, 30 Dec 2000 17:18:40 +0000 (17:18 +0000)]
p4raw-id: //depot/perl@8268

t/op/split.t

index 9a6586d..90c38e0 100755 (executable)
@@ -1,6 +1,6 @@
 #!./perl
 
-print "1..29\n";
+print "1..30\n";
 
 $FS = ':';
 
@@ -127,3 +127,8 @@ print "ok 28\n";
 $_ = join ':', split /(?=\w)/, "rm b";
 print "not" if $_ ne "r:m :b";
 print "ok 29\n";
+
+# unicode splittage
+@ary = map {ord} split //, v1.20.300.4000.50000.4000.300.20.1;
+print "not " unless "@ary" eq "1 20 300 4000 50000 4000 300 20 1";
+print "ok 30\n";