Mark ExtensionInstallUIBrowserTest.AppInstallConfirmation and...

Mark ExtensionInstallUIBrowserTest.AppInstallConfirmation and AppInstallConfirmation_Incognito as flaky on Windows.

TBR=xiyuan@chromium.org
BUG=141854
Review URL: https://chromiumcodereview.appspot.com/10827278

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151033 0039d316-1c4b-4281-b951-d872f2087c98
parent 8a47e2e9
......@@ -101,8 +101,14 @@ IN_PROC_BROWSER_TEST_F(ExtensionInstallUIBrowserTest,
EXPECT_EQ(theme, GetTheme());
}
#if defined(OS_WIN)
// http://crbug.com/141854
#define MAYBE_AppInstallConfirmation FLAKY_AppInstallConfirmation
#else
#define MAYBE_AppInstallConfirmation AppInstallConfirmation
#endif
IN_PROC_BROWSER_TEST_F(ExtensionInstallUIBrowserTest,
AppInstallConfirmation) {
MAYBE_AppInstallConfirmation) {
int num_tabs = browser()->tab_count();
FilePath app_dir = test_data_dir_.AppendASCII("app");
......@@ -119,8 +125,15 @@ IN_PROC_BROWSER_TEST_F(ExtensionInstallUIBrowserTest,
}
}
#if defined(OS_WIN)
// http://crbug.com/141854
#define MAYBE_AppInstallConfirmation_Incognito \
FLAKY_AppInstallConfirmation_Incognito
#else
#define MAYBE_AppInstallConfirmation_Incognito AppInstallConfirmation_Incognito
#endif
IN_PROC_BROWSER_TEST_F(ExtensionInstallUIBrowserTest,
AppInstallConfirmation_Incognito) {
MAYBE_AppInstallConfirmation_Incognito) {
Profile* incognito_profile = browser()->profile()->GetOffTheRecordProfile();
Browser* incognito_browser =
new Browser(Browser::CreateParams(incognito_profile));
......
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