diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-16 18:16:28 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-16 18:16:28 +0000 |
commit | b637ffadabdd74cf3d1ad745a96611c427d33ba5 (patch) | |
tree | ebe739a1480febfa0db3a50332e64a331caf2ec9 /t/harness | |
parent | 41f4651c3a21976c2a7025d67365a484c22412d6 (diff) | |
download | perl-b637ffadabdd74cf3d1ad745a96611c427d33ba5.tar.gz |
Allow for deeper t/ and also a single test.pl.
p4raw-id: //depot/perl@10637
Diffstat (limited to 't/harness')
-rw-r--r-- | t/harness | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -45,7 +45,7 @@ if (@ARGV) { my $mani = File::Spec->catdir(File::Spec->updir, "MANIFEST"); if (open(MANI, $mani)) { while (<MANI>) { - if (m!^((?:ext|lib)/.+/t/[^/]+\.t)\s!) { + if (m!^((?:ext|lib)/.+/(?:t/.+\.t)|test.pl)\s!) { push @tests, File::Spec->catdir($updir, $1); } } |