t/op/write.t See if write works (formats work)
t/op/yadayada.t See if ..., !!! and ??? work
t/perl.supp Perl valgrind suppressions
-t/pod/diag.t Test completeness of perldiag.pod
t/porting/args_assert.t Check that all PERL_ARGS_ASSERT* macros are used
t/porting/checkcase.t Check whether we are case-insensitive-fs-friendly
+t/porting/diag.t Test completeness of perldiag.pod
t/porting/maintainers.t Test that Porting/Maintaners.pl is up to date
t/porting/manifest.t Test that this MANIFEST file is well formed
t/README Instructions for regression tests
Tests for perl's built in functions that don't fit into any of the
other directories.
-=item F<t/pod/>
-
-Tests for POD directives. There are still some tests for the Pod
-modules hanging around in here that need to be moved out into F<lib/>.
-
=item F<t/re/>
Tests for regex related functions or behaviour. (These used to live
# something is that badly wrong.
push @ARGV, _tests_from_manifest($extensions, $known_extensions);
unless ($::core) {
- _find_tests('pod');
_find_tests('x2p');
_find_tests('porting');
_find_tests('japh') if $::torture;
use Config;
push @last, sort { lc $a cmp lc $b }
_tests_from_manifest($Config{extensions}, $Config{known_extensions});
- push @last, <pod/*.t>;
push @last, <x2p/*.t>;
my %times;