Commit 7eb95f2a authored by tommi@chromium.org's avatar tommi@chromium.org

Disable ReplaceEphemeralAppWithInstalledApp on Windows due to flakiness.

TBR=tmdiep
BUG=401028
NOTRY=true

Review URL: https://codereview.chromium.org/452853002

Cr-Commit-Position: refs/heads/master@{#288333}
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288333 0039d316-1c4b-4281-b951-d872f2087c98
parent a0b14813
...@@ -866,8 +866,16 @@ IN_PROC_BROWSER_TEST_F(EphemeralAppBrowserTest, ...@@ -866,8 +866,16 @@ IN_PROC_BROWSER_TEST_F(EphemeralAppBrowserTest,
// permanently install an ephemeral app. However, there may be cases where an // permanently install an ephemeral app. However, there may be cases where an
// install occurs through the usual route of installing from the Web Store (due // install occurs through the usual route of installing from the Web Store (due
// to race conditions). Ensure that the app is still installed correctly. // to race conditions). Ensure that the app is still installed correctly.
#if defined(OS_WIN)
// Disabled on Windows due to failures. See crbug.com/401028
#define MAYBE_ReplaceEphemeralAppWithInstalledApp \
DISABLED_ReplaceEphemeralAppWithInstalledApp
#else
#define MAYBE_ReplaceEphemeralAppWithInstalledApp \
ReplaceEphemeralAppWithInstalledApp
#endif
IN_PROC_BROWSER_TEST_F(EphemeralAppBrowserTest, IN_PROC_BROWSER_TEST_F(EphemeralAppBrowserTest,
ReplaceEphemeralAppWithInstalledApp) { MAYBE_ReplaceEphemeralAppWithInstalledApp) {
InitSyncService(); InitSyncService();
const Extension* app = InstallAndLaunchEphemeralApp(kNotificationsTestApp); const Extension* app = InstallAndLaunchEphemeralApp(kNotificationsTestApp);
......
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