Commit a34c18e9 authored by Fergal Daly's avatar Fergal Daly Committed by Commit Bot

Disable ProfileHelperTest.DeleteSoleProfile on linux, mac and window release builds.

It's flaky on those builders.

TBR=droger@chromum.org

Bug: 1008238
Change-Id: I090ba713404d9853df74761d4c09ac646b01507e
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1824055
Commit-Queue: Fergal Daly <fergal@chromium.org>
Reviewed-by: default avatarFergal Daly <fergal@chromium.org>
Cr-Commit-Position: refs/heads/master@{#700083}
parent 090544a4
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
#include "base/bind.h" #include "base/bind.h"
#include "base/run_loop.h" #include "base/run_loop.h"
#include "base/scoped_observer.h" #include "base/scoped_observer.h"
#include "build/build_config.h"
#include "chrome/browser/browser_process.h" #include "chrome/browser/browser_process.h"
#include "chrome/browser/profiles/profile_attributes_storage.h" #include "chrome/browser/profiles/profile_attributes_storage.h"
#include "chrome/browser/profiles/profile_manager.h" #include "chrome/browser/profiles/profile_manager.h"
...@@ -111,7 +112,13 @@ IN_PROC_BROWSER_TEST_F(ProfileHelperTest, OpenNewWindowForProfile) { ...@@ -111,7 +112,13 @@ IN_PROC_BROWSER_TEST_F(ProfileHelperTest, OpenNewWindowForProfile) {
#endif #endif
} }
IN_PROC_BROWSER_TEST_F(ProfileHelperTest, DeleteSoleProfile) { #if (defined(OS_LINUX) || defined(OS_MACOSX) || defined(OS_WIN)) && \
defined(NDEBUG)
#define MAYBE_DeleteSoleProfile DISABLED_DeleteSoleProfile
#else
#define MAYBE_DeleteSoleProfile DeleteSoleProfile
#endif
IN_PROC_BROWSER_TEST_F(ProfileHelperTest, MAYBE_DeleteSoleProfile) {
content::TestWebUI web_ui; content::TestWebUI web_ui;
Browser* original_browser = browser(); Browser* original_browser = browser();
ProfileAttributesStorage& storage = ProfileAttributesStorage& storage =
......
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