Searched refs:excludePaths (Results 1 - 1 of 1) sorted by relevance

/openjdk9/nashorn/test/src/jdk/nashorn/internal/test/framework/
H A DTestFinder.java126 final Path[] excludePaths = getExcludeDirs();
129 findTests(framework, dir, tests, orphans, excludePaths, testExcludeSet, testFactory);
140 private static boolean inExcludePath(final Path file, final Path[] excludePaths) { argument
141 if (excludePaths == null) {
145 for (final Path excludePath : excludePaths) {
153 private static <T> void findTests(final String framework, final Path dir, final List<T> tests, final Set<String> orphanFiles, final Path[] excludePaths, final Set<String> excludedTests, final TestFactory<T> factory) throws Exception { argument
169 if (!inExcludePath(file, excludePaths) && !excludedTests.contains(file.getFileName().toString())) {
451 final Path[] excludePaths = new Path[excludeDirs.length];
455 excludePaths[i++] = fileSystem.getPath(excludeDir);
457 return excludePaths;
[all...]

Completed in 99 milliseconds