Commit 8f21b48d authored by zea@chromium.org's avatar zea@chromium.org

[Sync] Disable purge/configuration tests on windows

Failing on buildbots, but not locally/trybots.

BUG=139726
TBR=sergeyu@chromium.org

Review URL: https://chromiumcodereview.appspot.com/10836021

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149074 0039d316-1c4b-4281-b951-d872f2087c98
parent f513c617
...@@ -2559,6 +2559,12 @@ class SyncManagerTestWithMockScheduler : public SyncManagerTest { ...@@ -2559,6 +2559,12 @@ class SyncManagerTestWithMockScheduler : public SyncManagerTest {
// Test that the configuration params are properly created and sent to // Test that the configuration params are properly created and sent to
// ScheduleConfigure. No callback should be invoked. Any disabled datatypes // ScheduleConfigure. No callback should be invoked. Any disabled datatypes
// should be purged. // should be purged.
// Fails on Windows: crbug.com/139726
#if defined(OS_WIN)
#define MAYBE_BasicConfiguration DISABLED_BasicConfiguration
#else
#define MAYBE_BasicConfiguration BasicConfiguration
#endif
TEST_F(SyncManagerTestWithMockScheduler, BasicConfiguration) { TEST_F(SyncManagerTestWithMockScheduler, BasicConfiguration) {
ConfigureReason reason = CONFIGURE_REASON_RECONFIGURATION; ConfigureReason reason = CONFIGURE_REASON_RECONFIGURATION;
ModelTypeSet types_to_download(BOOKMARKS, PREFERENCES); ModelTypeSet types_to_download(BOOKMARKS, PREFERENCES);
...@@ -2734,6 +2740,12 @@ TEST_F(SyncManagerTest, PurgePartiallySyncedTypes) { ...@@ -2734,6 +2740,12 @@ TEST_F(SyncManagerTest, PurgePartiallySyncedTypes) {
// Test CleanipDisabledTypes properly purges all disabled types as specified // Test CleanipDisabledTypes properly purges all disabled types as specified
// by the previous and current enabled params. Enabled partial types should not // by the previous and current enabled params. Enabled partial types should not
// be purged. // be purged.
// Fails on Windows: crbug.com/139726
#if defined(OS_WIN)
#define MAYBE_PurgeDisabledTypes DISABLED_PurgeDisabledTypes
#else
#define MAYBE_PurgeDisabledTypes PurgeDisabledTypes
#endif
TEST_F(SyncManagerTest, PurgeDisabledTypes) { TEST_F(SyncManagerTest, PurgeDisabledTypes) {
ModelSafeRoutingInfo routing_info; ModelSafeRoutingInfo routing_info;
GetModelSafeRoutingInfo(&routing_info); GetModelSafeRoutingInfo(&routing_info);
......
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