Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2681)

Unified Diff: android_webview/tools/system_webview_shell/layout_tests/src/org/chromium/webview_shell/test/WebViewLayoutTest.java

Issue 2874533002: Disable failing tests on WebView bots (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « android_webview/tools/cts_config/expected_failure_on_bot.json ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/tools/system_webview_shell/layout_tests/src/org/chromium/webview_shell/test/WebViewLayoutTest.java
diff --git a/android_webview/tools/system_webview_shell/layout_tests/src/org/chromium/webview_shell/test/WebViewLayoutTest.java b/android_webview/tools/system_webview_shell/layout_tests/src/org/chromium/webview_shell/test/WebViewLayoutTest.java
index 9a411067e9aca1f2cf46360b51211d39c05ed7ef..e4dee476ad5e61cdee5bfb4e5449bf10231f0982 100644
--- a/android_webview/tools/system_webview_shell/layout_tests/src/org/chromium/webview_shell/test/WebViewLayoutTest.java
+++ b/android_webview/tools/system_webview_shell/layout_tests/src/org/chromium/webview_shell/test/WebViewLayoutTest.java
@@ -193,6 +193,7 @@ public class WebViewLayoutTest {
@Test
@MediumTest
+ @DisabledTest(message = "crbug.com/719974")
public void testWebViewIncludedStableInterfaces() throws Exception {
ensureJsTestCopied();
loadUrlWebViewAsync("file://" + PATH_BLINK_PREFIX
@@ -415,8 +416,9 @@ public class WebViewLayoutTest {
File filePath = new File(absolutePath.substring(0, absolutePath.lastIndexOf("/")));
if (!filePath.exists()) {
- if (!filePath.mkdirs())
+ if (!filePath.mkdirs()) {
throw new IOException("failed to create directories: " + filePath);
+ }
}
FileOutputStream outputStream = new FileOutputStream(fileOut);
« no previous file with comments | « android_webview/tools/cts_config/expected_failure_on_bot.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698