Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(851)

Unified Diff: chrome/browser/extensions/api/autofill_private/autofill_private_apitest.cc

Issue 2299013003: Disable flaky AutofillPrivateApiTest tests (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/api/autofill_private/autofill_private_apitest.cc
diff --git a/chrome/browser/extensions/api/autofill_private/autofill_private_apitest.cc b/chrome/browser/extensions/api/autofill_private/autofill_private_apitest.cc
index f58445701707a1e6bb8fdbbd385d6083e6db913e..ea98788005a3e5fa56d53ad44db1536df58821a2 100644
--- a/chrome/browser/extensions/api/autofill_private/autofill_private_apitest.cc
+++ b/chrome/browser/extensions/api/autofill_private/autofill_private_apitest.cc
@@ -48,7 +48,13 @@ IN_PROC_BROWSER_TEST_F(AutofillPrivateApiTest, SaveAddress) {
EXPECT_TRUE(RunAutofillSubtest("saveAddress")) << message_;
}
-IN_PROC_BROWSER_TEST_F(AutofillPrivateApiTest, GetCountryList) {
+// TODO(crbug.com/643097) Disabled for flakiness.
+#if defined(OS_WIN)
+#define MAYBE_GetCountryList DISABLED_GetCountryList
+#else
+#define MAYBE_GetCountryList GetCountryList
+#endif // defined(OS_WIN)
+IN_PROC_BROWSER_TEST_F(AutofillPrivateApiTest, MAYBE_GetCountryList) {
EXPECT_TRUE(RunAutofillSubtest("getCountryList")) << message_;
}
@@ -60,7 +66,13 @@ IN_PROC_BROWSER_TEST_F(AutofillPrivateApiTest, SaveCreditCard) {
EXPECT_TRUE(RunAutofillSubtest("saveCreditCard")) << message_;
}
-IN_PROC_BROWSER_TEST_F(AutofillPrivateApiTest, RemoveEntry) {
+// TODO(crbug.com/643097) Disabled for flakiness.
+#if defined(OS_WIN)
+#define MAYBE_RemoveEntry DISABLED_RemoveEntry
+#else
+#define MAYBE_RemoveEntry RemoveEntry
+#endif // defined(OS_WIN)
+IN_PROC_BROWSER_TEST_F(AutofillPrivateApiTest, MAYBE_RemoveEntry) {
EXPECT_TRUE(RunAutofillSubtest("removeEntry")) << message_;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698