summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2010-11-27 22:12:13 -0700
committerFather Chrysostomos <sprout@cpan.org>2010-11-28 04:49:17 -0800
commit8bfc9fab7a860a6f36ba9cf5775404466dde58be (patch)
treec58c6a71c62eb62f05da29b3c81cc70aefd92f13 /t
parent1ef17b7294e4839ff6f8051fb15eaa566aed4dd1 (diff)
downloadperl-8bfc9fab7a860a6f36ba9cf5775404466dde58be.tar.gz
reg_fold.t: Disable single char fold testing
This is now more comprehensively done by fold_grind.t
Diffstat (limited to 't')
-rw-r--r--t/re/reg_fold.t1
1 files changed, 1 insertions, 0 deletions
diff --git a/t/re/reg_fold.t b/t/re/reg_fold.t
index 135b40e91e..4f1aa325d0 100644
--- a/t/re/reg_fold.t
+++ b/t/re/reg_fold.t
@@ -21,6 +21,7 @@ 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");