Ignore TEMPLATE.html in LayoutTest directories

Change-Id: I5b1bbd915a569568db368d678a5cc32309fd7be5
This commit is contained in:
Steve Block
2010-02-19 16:10:29 +00:00
parent 2eae0694ea
commit 5e8f52f5c5

View File

@@ -54,6 +54,9 @@ public class FsUtils {
String[] files = d.list();
for (int i = 0; i < files.length; i++) {
String s = dir + "/" + files[i];
if (s.endsWith("TEMPLATE.html")) {
continue;
}
if (FileFilter.ignoreTest(s)) {
Log.v(LOGTAG, " Ignoring: " + s);
continue;