summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2010-03-12 09:35:37 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2010-03-12 09:35:37 -0800
commite898bdfe85a9ddeaf63120e5539bc6e2155db989 (patch)
tree367836eb5e234c3f844359cd811901c2e6afb6be /tests
parenta91e972752211d6731fb6784f3f9b653add58aa8 (diff)
parentb5522301a01d9ac8b86e18418562d28b5091dd27 (diff)
downloadframeworks_base-e898bdfe85a9ddeaf63120e5539bc6e2155db989.zip
frameworks_base-e898bdfe85a9ddeaf63120e5539bc6e2155db989.tar.gz
frameworks_base-e898bdfe85a9ddeaf63120e5539bc6e2155db989.tar.bz2
Merge "Puts two regex layout tests back on the DumpRenderTree skipped list"
Diffstat (limited to 'tests')
-rw-r--r--tests/DumpRenderTree/src/com/android/dumprendertree/FileFilter.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/DumpRenderTree/src/com/android/dumprendertree/FileFilter.java b/tests/DumpRenderTree/src/com/android/dumprendertree/FileFilter.java
index eecd00a..e3486a0 100644
--- a/tests/DumpRenderTree/src/com/android/dumprendertree/FileFilter.java
+++ b/tests/DumpRenderTree/src/com/android/dumprendertree/FileFilter.java
@@ -24,9 +24,8 @@ public class FileFilter {
private static final String LOGTAG = "FileFilter";
// Returns whether we should ignore this test and skip running it.
- // Currently we use this only for tests that crash the browser.
- // TODO: Once these crashes are fixed, we should probably eliminate this
- // method, as no test should crash.
+ // Currently we use this only for tests that crash or hang DumpRenderTree.
+ // TODO: Fix these and eliminate this method.
public static boolean ignoreTest(String file) {
for (int i = 0; i < ignoreTestList.length; i++) {
if (file.endsWith(ignoreTestList[i])) {
@@ -74,6 +73,8 @@ public class FileFilter {
static final String[] ignoreTestList = {
"fast/js/regexp-charclass-crash.html", // RegExp is too large, causing OOM
+ "fast/regex/test1.html", // Causes DumpRenderTree to hang with V8
+ "fast/regex/slow.html", // Causes DumpRenderTree to hang with V8
"editing/selection/move-left-right.html" // Causes DumpRenderTree to hang
};