diff options
author | Karl Williamson <khw@cpan.org> | 2022-12-12 20:45:49 -0700 |
---|---|---|
committer | Yves Orton <demerphq@gmail.com> | 2022-12-18 18:56:09 +0100 |
commit | 8eb5958fef7a2431f951b5ffb77ad7703fcfb34c (patch) | |
tree | 64a772e9b406348c32e7f71b3072fac58bde75d1 /t | |
parent | 9de1881be724d80bf6e89d667150679945a7964c (diff) | |
download | perl-8eb5958fef7a2431f951b5ffb77ad7703fcfb34c.tar.gz |
harness: There is a .pl test file: cpan/Term-Cap/test.pl
It was handled by using '*' for that directory, but future commits will
want to name individual files in a directory.
Diffstat (limited to 't')
-rw-r--r-- | t/harness | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -190,7 +190,7 @@ if (@ARGV) { if ( m! \A (?: \.\. / )? ( .*? ) # $1 is the directory path name / - ( [^/]* \.t ) # $2 is the .t name + ( [^/]* \. (?: t | pl ) ) # $2 is the test name \z !x) { my $path = $1; |