From 9f3d340b83c08096056627e11b2a4fd2560e12bf Mon Sep 17 00:00:00 2001 From: Jarkko Hietaniemi Date: Sun, 13 Jan 2002 19:55:10 +0000 Subject: [PATCH] Start a new test category: uni. Much of t/op/pat should probably be moved here, but holding on that until Jeffrey finishes his big mktables rewrite. Bits and pieces of op/split, op/pack, op/append, op/join, could probably be moved to respective uni tests, too. p4raw-id: //depot/perl@14249 --- MANIFEST | 4 ++-- t/TEST | 2 +- t/harness | 1 + t/{op/unifold.t => uni/fold.t} | 0 t/{op/unisprintf.t => uni/sprintf.t} | 0 5 files changed, 4 insertions(+), 3 deletions(-) rename t/{op/unifold.t => uni/fold.t} (100%) rename t/{op/unisprintf.t => uni/sprintf.t} (100%) diff --git a/MANIFEST b/MANIFEST index 66a265b..450ea17 100644 --- a/MANIFEST +++ b/MANIFEST @@ -2333,8 +2333,6 @@ t/op/tiehandle.t See if tie for handles works t/op/time.t See if time functions work t/op/tr.t See if tr works t/op/undef.t See if undef works -t/op/unifold.t See if Unicode folding works -t/op/unisprintf.t See if Unicode sprintf works t/op/universal.t See if UNIVERSAL class works t/op/unshift.t See if unshift works t/op/utf8decode.t See if UTF-8 decoding works @@ -2395,6 +2393,8 @@ t/run/switchx.t Test the -x switch t/TEST The regression tester t/test.pl Simple testing library t/TestInit.pm Preamble library for core tests +t/uni/fold.t See if Unicode folding works +t/uni/sprintf.t See if Unicode sprintf works taint.c Tainting code thrdvar.h Per-thread variables thread.h Threading header diff --git a/t/TEST b/t/TEST index 9f2081a..b788da9 100755 --- a/t/TEST +++ b/t/TEST @@ -72,7 +72,7 @@ sub _find_tests { } unless (@ARGV) { - foreach my $dir (qw(base comp cmd run io op)) { + foreach my $dir (qw(base comp cmd run io op uni)) { _find_tests($dir); } _find_tests("lib") unless $core; diff --git a/t/harness b/t/harness index 36ee4ce..330cc43 100644 --- a/t/harness +++ b/t/harness @@ -50,6 +50,7 @@ if (@ARGV) { push @tests, ; push @tests, ; push @tests, ; + push @tests, ; push @tests, ; use File::Spec; my $updir = File::Spec->updir; diff --git a/t/op/unifold.t b/t/uni/fold.t similarity index 100% rename from t/op/unifold.t rename to t/uni/fold.t diff --git a/t/op/unisprintf.t b/t/uni/sprintf.t similarity index 100% rename from t/op/unisprintf.t rename to t/uni/sprintf.t -- 2.7.4