| 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);
|
|
|