re/reg_fold.t: Test more code points
authorKarl Williamson <public@khwilliamson.com>
Sun, 25 Dec 2011 21:32:56 +0000 (14:32 -0700)
committerKarl Williamson <public@khwilliamson.com>
Thu, 19 Jan 2012 18:58:20 +0000 (11:58 -0700)
This statement was wrong that said all these things are tested in
fold_grind.t.  It will test them all when run with a particular option,
but due to time issues, it skips many code points.  reg_fold.t, on the
other hand, does just basic sanity testing, and so should always test
every code point for that.

t/re/reg_fold.t

index c017152..e8c6262 100644 (file)
@@ -18,7 +18,6 @@ while (<$fh>) {
     my ($line,$comment)= split/\s+#\s+/, $_;
     my ($cp,$type,@folded)=split/[\s;]+/,$line||'';
     next unless $type and ($type eq 'F' or $type eq 'C');
-    next if $type eq 'C';   # 'C' tests now done by fold_grind.t
     my $fold_above_latin1 = grep { hex("0x$_") > 255 } @folded;
     $_="\\x{$_}" for @folded;
     my $cpv=hex("0x$cp");