Loading tests/DumpRenderTree2/src/com/android/dumprendertree2/FileFilter.java +7 −2 Original line number Diff line number Diff line Loading @@ -240,13 +240,18 @@ public class FileFilter { /** * Checks if the file is a test. * Currently we run .html and .xhtml tests. * Currently we run .html, .xhtml and .php tests. * * @warning You MUST also call isTestDir() on the parent directory before * assuming that a file is a test. * * @param testName * @return if the file is a test */ public static boolean isTestFile(String testName) { return testName.endsWith(".html") || testName.endsWith(".xhtml"); return testName.endsWith(".html") || testName.endsWith(".xhtml") || testName.endsWith(".php"); } /** Loading Loading
tests/DumpRenderTree2/src/com/android/dumprendertree2/FileFilter.java +7 −2 Original line number Diff line number Diff line Loading @@ -240,13 +240,18 @@ public class FileFilter { /** * Checks if the file is a test. * Currently we run .html and .xhtml tests. * Currently we run .html, .xhtml and .php tests. * * @warning You MUST also call isTestDir() on the parent directory before * assuming that a file is a test. * * @param testName * @return if the file is a test */ public static boolean isTestFile(String testName) { return testName.endsWith(".html") || testName.endsWith(".xhtml"); return testName.endsWith(".html") || testName.endsWith(".xhtml") || testName.endsWith(".php"); } /** Loading