summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
Diffstat (limited to 't')
-rwxr-xr-xt/TEST2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/TEST b/t/TEST
index a5f56404b3..10397b201d 100755
--- a/t/TEST
+++ b/t/TEST
@@ -207,7 +207,7 @@ sub _find_files {
opendir DIR, $dir or die "Trouble opening $dir: $!";
foreach my $f (sort { $a cmp $b } readdir DIR) {
next if $skip{$f};
-
+ $dir =~ s/(?<!\^)\.dir(;1)?$//i if $is_vms; # trim .DIR extension
my $fullpath = "$dir/$f";
if (-d $fullpath) {
_find_files($patt, $fullpath);