Commit 1e22c5ed authored by Ioana Pandele's avatar Ioana Pandele Committed by Commit Bot

Disable flaky test cases in SyncCustomizationFragmentTest on KitKat

TBR=mastiz@chromium.org

Bug: 899989
Change-Id: Ic839d6c9e02caf9f7d74cfd9fadedb7f144d2901
Reviewed-on: https://chromium-review.googlesource.com/c/1307446Reviewed-by: default avatarIoana Pandele <ioanap@chromium.org>
Commit-Queue: Ioana Pandele <ioanap@chromium.org>
Cr-Commit-Position: refs/heads/master@{#603946}
parent 0b71452b
...@@ -7,6 +7,7 @@ package org.chromium.chrome.browser.sync; ...@@ -7,6 +7,7 @@ package org.chromium.chrome.browser.sync;
import android.annotation.SuppressLint; import android.annotation.SuppressLint;
import android.app.Dialog; import android.app.Dialog;
import android.app.FragmentTransaction; import android.app.FragmentTransaction;
import android.os.Build;
import android.preference.CheckBoxPreference; import android.preference.CheckBoxPreference;
import android.preference.Preference; import android.preference.Preference;
import android.preference.SwitchPreference; import android.preference.SwitchPreference;
...@@ -27,6 +28,7 @@ import org.junit.runner.RunWith; ...@@ -27,6 +28,7 @@ import org.junit.runner.RunWith;
import org.chromium.base.ThreadUtils; import org.chromium.base.ThreadUtils;
import org.chromium.base.test.util.CommandLineFlags; import org.chromium.base.test.util.CommandLineFlags;
import org.chromium.base.test.util.DisableIf;
import org.chromium.base.test.util.DisabledTest; import org.chromium.base.test.util.DisabledTest;
import org.chromium.base.test.util.Feature; import org.chromium.base.test.util.Feature;
import org.chromium.chrome.R; import org.chromium.chrome.R;
...@@ -340,6 +342,7 @@ public class SyncCustomizationFragmentTest { ...@@ -340,6 +342,7 @@ public class SyncCustomizationFragmentTest {
@Test @Test
@SmallTest @SmallTest
@Feature({"Sync"}) @Feature({"Sync"})
@DisableIf.Build(message = "crbug.com/899989 ", sdk_is_less_than = Build.VERSION_CODES.M)
public void testPaymentsIntegrationCheckboxEnablesPaymentsIntegration() { public void testPaymentsIntegrationCheckboxEnablesPaymentsIntegration() {
mSyncTestRule.setUpTestAccountAndSignIn(); mSyncTestRule.setUpTestAccountAndSignIn();
...@@ -581,6 +584,7 @@ public class SyncCustomizationFragmentTest { ...@@ -581,6 +584,7 @@ public class SyncCustomizationFragmentTest {
@Test @Test
@SmallTest @SmallTest
@Feature({"Sync"}) @Feature({"Sync"})
@DisableIf.Build(message = "crbug.com/899989 ", sdk_is_less_than = Build.VERSION_CODES.M)
public void testPassphraseCreation() { public void testPassphraseCreation() {
mSyncTestRule.setUpTestAccountAndSignIn(); mSyncTestRule.setUpTestAccountAndSignIn();
SyncTestUtil.waitForSyncActive(); SyncTestUtil.waitForSyncActive();
......
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