Commit 684e3bae authored by Sergey Ulanov's avatar Sergey Ulanov Committed by Commit Bot

Increase timeout for SnapshotAuraTest.FullScreenWindow test on Fuchsia

SnapshotAuraTest.FullScreenWindow was using action_max_timeout() on
Linux, but not on Fuchsia. Now it's timing out on Fuchsia periodically.
Increase the timeout on Fuchsia as well.

Bug: 1143031, 1142521
Change-Id: Iaddd417af60a127273b965e1e0646674f8af10e3
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2503347
Commit-Queue: Nico Weber <thakis@chromium.org>
Auto-Submit: Sergey Ulanov <sergeyu@chromium.org>
Reviewed-by: default avatarNico Weber <thakis@chromium.org>
Reviewed-by: default avatarDavid Dorwin <ddorwin@chromium.org>
Cr-Commit-Position: refs/heads/master@{#822153}
parent 3b1e1daa
......@@ -200,12 +200,12 @@ INSTANTIATE_TEST_SUITE_P(All, SnapshotAuraTest, ::testing::Bool());
#define MAYBE_FullScreenWindow FullScreenWindow
#endif
TEST_P(SnapshotAuraTest, MAYBE_FullScreenWindow) {
#if defined(OS_LINUX) || defined(OS_CHROMEOS)
// TODO(https://crbug.com/1002716): Fix this test to run in < action_timeout()
#if defined(OS_LINUX) || defined(OS_CHROMEOS) || defined(OS_FUCHSIA)
// TODO(https://crbug.com/1143031): Fix this test to run in < action_timeout()
// on the Linux Debug & TSAN bots.
const base::test::ScopedRunLoopTimeout increased_run_timeout(
FROM_HERE, TestTimeouts::action_max_timeout());
#endif // defined(OS_LINUX) || defined(OS_CHROMEOS)
#endif // defined(OS_LINUX) || defined(OS_CHROMEOS) || defined(OS_FUCHSIA)
#if defined(OS_WIN)
// TODO(https://crbug.com/850556): Make work on Win10.
......
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