Adds to DumpRenderTree the ability to ignore the results of tests

Change-Id: I7c16d9713fc35c773b810f9d5ce6700f8d9a28e4
This commit is contained in:
Steve Block
2010-03-09 13:54:09 +00:00
parent 73f7537b30
commit cf0fd7892b
5 changed files with 98 additions and 46 deletions

View File

@@ -68,7 +68,7 @@ public class Menu extends FileList {
try {
File tests_list = new File(LAYOUT_TESTS_LIST_FILE);
BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(tests_list, false));
FsUtils.findLayoutTestsRecursively(bos, path);
FsUtils.findLayoutTestsRecursively(bos, path, false); // Don't ignore results
bos.flush();
bos.close();
} catch (Exception e) {
@@ -77,4 +77,3 @@ public class Menu extends FileList {
}
}