| Index: chrome/browser/profiles/profile_manager_browsertest.cc
|
| ===================================================================
|
| --- chrome/browser/profiles/profile_manager_browsertest.cc (revision 111365)
|
| +++ chrome/browser/profiles/profile_manager_browsertest.cc (working copy)
|
| @@ -56,7 +56,15 @@
|
|
|
| // Delete all profiles in a multi profile setup and make sure a new one is
|
| // created.
|
| -IN_PROC_BROWSER_TEST_F(ProfileManagerBrowserTest, DeleteAllProfiles) {
|
| +
|
| +#if defined(OS_MACOSX)
|
| +// See crbug.com/104851
|
| +#define MAYBE_DeleteAllProfiles FLAKY_DeleteAllProfiles
|
| +#else
|
| +#define MAYBE_DeleteAllProfiles DeleteAllProfiles
|
| +#endif
|
| +
|
| +IN_PROC_BROWSER_TEST_F(ProfileManagerBrowserTest, MAYBE_DeleteAllProfiles) {
|
| ProfileManager* profile_manager = g_browser_process->profile_manager();
|
| ProfileInfoCache& cache = profile_manager->GetProfileInfoCache();
|
|
|
|
|