Commit 52e71572 authored by Wenyu Fu's avatar Wenyu Fu Committed by Commit Bot

[Sheriff] Disable test DontSelectInvalidFiles on Android

Bug: 1094938, 1094926
Change-Id: Ib62d93d8d1ea668eb1a2542df3c54b234798fa59
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2248546
Commit-Queue: Wenyu Fu <wenyufu@chromium.org>
Commit-Queue: Aaron Colwell <acolwell@chromium.org>
Auto-Submit: Wenyu Fu <wenyufu@chromium.org>
Reviewed-by: default avatarAaron Colwell <acolwell@chromium.org>
Cr-Commit-Position: refs/heads/master@{#778961}
parent fc4aa17e
......@@ -2626,7 +2626,15 @@ IN_PROC_BROWSER_TEST_P(RenderFrameHostManagerTest,
// try to select files whose paths cannot be converted to WebStrings. This
// check is done in the renderer because it is hard to predict which paths will
// turn into empty WebStrings, and the behavior varies by platform.
IN_PROC_BROWSER_TEST_P(RenderFrameHostManagerTest, DontSelectInvalidFiles) {
//
// Crashed on various builders on Android. See http://crbug.com/1094938
#if defined(OS_ANDROID)
#define MAYBE_DontSelectInvalidFiles DISABLED_DontSelectInvalidFiles
#else
#define MAYBE_DontSelectInvalidFiles DontSelectInvalidFiles
#endif
IN_PROC_BROWSER_TEST_P(RenderFrameHostManagerTest,
MAYBE_DontSelectInvalidFiles) {
StartServer();
base::RunLoop run_loop;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment