Commit 28825f1b authored by Reid Kleckner's avatar Reid Kleckner Committed by Chromium LUCI CQ

Disable...

Disable TwoClientSendTabToSelfSyncTestWithSendTabToSelfWhenSignedIn.SignedInClientCanReceive in component builds

This test times out in optimized (is_debug=false) component builds. It
passes in is_debug=true component builds. I can't explain that behavior,
but disable it in all component configs to be on the safe side.

R=victorvianna@google.com
Bug: 1166032

Change-Id: Ie39ffcfe06531c5a2039b22c8c3fbcd306fbe510
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2626761
Commit-Queue: Victor Vianna <victorvianna@google.com>
Reviewed-by: default avatarVictor Vianna <victorvianna@google.com>
Cr-Commit-Position: refs/heads/master@{#842938}
parent 55b9933e
...@@ -298,9 +298,16 @@ class TwoClientSendTabToSelfSyncTestWithSendTabToSelfWhenSignedIn ...@@ -298,9 +298,16 @@ class TwoClientSendTabToSelfSyncTestWithSendTabToSelfWhenSignedIn
// Non-primary accounts don't exist on ChromeOS. // Non-primary accounts don't exist on ChromeOS.
#if !BUILDFLAG(IS_CHROMEOS_ASH) #if !BUILDFLAG(IS_CHROMEOS_ASH)
// TODO(crbug.com/1166032): Test times out in component builds.
#if defined(COMPONENT_BUILD)
#define MAYBE_SignedInClientCanReceive DISABLED_SignedInClientCanReceive
#else
#define MAYBE_SignedInClientCanReceive SignedInClientCanReceive
#endif
IN_PROC_BROWSER_TEST_F( IN_PROC_BROWSER_TEST_F(
TwoClientSendTabToSelfSyncTestWithSendTabToSelfWhenSignedIn, TwoClientSendTabToSelfSyncTestWithSendTabToSelfWhenSignedIn,
SignedInClientCanReceive) { MAYBE_SignedInClientCanReceive) {
ASSERT_TRUE(SetupClients()) << "SetupClients() failed."; ASSERT_TRUE(SetupClients()) << "SetupClients() failed.";
// Set up one client syncing and the other signed-in but not syncing. // Set up one client syncing and the other signed-in but not syncing.
......
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