Lines Matching full:skip
71 # Directories to skip globally when looking for all files, or for directories
77 # Additional paths to skip when building a list of all files in the
96 # Turn the skip lists into hashes for ease of querying.
97 my %skip = map { $_ => 1 } @GLOBAL_SKIP;
100 # Wanted function for find. Prune anything matching either of the skip
106 if ($skip{$path} || $files_skip{$file} || $file =~ m{ [.]lo\z }xms) {
209 # skip - A reference to an array of directories to skip
215 # Add the global skip list. We also ignore the perl directory if it
218 my @skip = $args_ref->{skip} ? @{ $args_ref->{skip} } : ();
219 push(@skip, @GLOBAL_SKIP, 'perl');
221 # Separate directories to skip under tests from top-level directories.
222 my @skip_tests = grep { m{ \A tests/ }xms } @skip;
223 @skip = grep { !m{ \A tests }xms } @skip;
228 # Convert the skip lists into hashes for convenience.
229 my %skip = map { $_ => 1 } @skip, 'tests';
234 my @dirs = grep { -d && !$skip{$_} } readdir($rootdir);
242 # Skip if found in %skip_tests or if not a directory.
344 my @dirs = perl_dirs({ skip => [qw(lib)] });
404 Only one option is supported: C<skip>, whose value should be a reference to an