From 8e8cf732d1ba39ca21b6ffb593e939709bc5b0a1 Mon Sep 17 00:00:00 2001 From: Steve Block Date: Thu, 10 Feb 2011 10:51:45 -0800 Subject: [PATCH] Increase DRT timeout while waiting for WebView to dump as text This avoids problems with LayoutTests fast/frames/lots-of-iframes.html and fast/frames/lots-of-objects.html Bug: 3440578 Change-Id: Ic045141f986baf779ffc9eec804ba994ce0d0fbe --- .../src/com/android/dumprendertree/TestShellActivity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/DumpRenderTree/src/com/android/dumprendertree/TestShellActivity.java b/tests/DumpRenderTree/src/com/android/dumprendertree/TestShellActivity.java index 3ea491133ccc8..9c0a4bceef0ec 100644 --- a/tests/DumpRenderTree/src/com/android/dumprendertree/TestShellActivity.java +++ b/tests/DumpRenderTree/src/com/android/dumprendertree/TestShellActivity.java @@ -941,7 +941,7 @@ public class TestShellActivity extends Activity implements LayoutTestController private boolean mDumpWebKitData = false; static final String TIMEOUT_STR = "**Test timeout"; - static final long DUMP_TIMEOUT_MS = 20000; //20s timeout for dumping webview content + static final long DUMP_TIMEOUT_MS = 100000; // 100s timeout for dumping webview content static final int MSG_TIMEOUT = 0; static final int MSG_WEBKIT_DATA = 1;