Lines Matching refs:Find
37 # If no tests are passed, find all the .html, .shtml, .xml, .xhtml, .pl, .php (and svg) files in the test directory.
57 use File::Find;
375 die "can't find executable $dumpToolName (looked in $productDir)\n" unless -x $dumpTool;
379 die "can't find executable $imageDiffTool (looked in $productDir)\n" if $pixelTests && !-x $imageDiffTool;
868 $dir =~ s|/([^/]+)$|| or die "Failed to find test name from base\n";
931 $dir =~ s|/([^/]+)$|| or die "Failed to find test name from base\n";
1471 return () if exists $ignoredLocalDirectories{basename($File::Find::dir)};
1472 $ignoredDirectories{File::Spec->abs2rel($File::Find::dir, $testDirectory)} = 1;
1479 find({ preprocess => $addIgnoredDirectories, wanted => sub {} }, $path);
1563 $dir =~ s|/([^/]+)$|| or die "Failed to find test name from base\n";
2115 return () if exists $ignoredLocalDirectories{basename($File::Find::dir)};
2116 return () if exists $ignoredDirectories{File::Spec->abs2rel($File::Find::dir, $testDirectory)};
2125 my $path = File::Spec->abs2rel(catfile($File::Find::dir, $filename), $testDirectory);
2148 find({ preprocess => \&directoryFilter, wanted => \&fileFilter }, $fullPath);
2151 find({ preprocess => \&directoryFilter, wanted => \&fileFilter }, $platformPath) if (-d $platformPath);
2159 find({ preprocess => \&directoryFilter, wanted => \&fileFilter }, $testDirectory);
2161 find({ preprocess => \&directoryFilter, wanted => \&fileFilter }, $level);