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

Unified Diff: components/autofill/core/browser/data_driven_test.cc

Issue 1143253012: More work on removing variants from Autofill (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: work around iOS lameness Created 5 years, 6 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
Index: components/autofill/core/browser/data_driven_test.cc
diff --git a/components/autofill/core/browser/data_driven_test.cc b/components/autofill/core/browser/data_driven_test.cc
index 01d37a2fe64b9c5b049b52b37df8c91ecde1c09b..e1666994bd49b034e064278fbcaf8425cd0357de 100644
--- a/components/autofill/core/browser/data_driven_test.cc
+++ b/components/autofill/core/browser/data_driven_test.cc
@@ -52,6 +52,11 @@ void DataDrivenTest::RunDataDrivenTest(
void DataDrivenTest::RunOneDataDrivenTest(
const base::FilePath& test_file_name,
const base::FilePath& output_directory) {
+ // iOS doesn't get rid of removed test files. TODO(estade): remove this after
+ // all iOS bots are clobbered.
+ if (test_file_name.BaseName().value() == FILE_PATH_LITERAL("multimerge.in"))
+ return;
+
ASSERT_TRUE(base::DirectoryExists(output_directory));
SCOPED_TRACE(test_file_name.BaseName().value());
« no previous file with comments | « components/autofill/core/browser/contact_info.cc ('k') | components/autofill/core/browser/personal_data_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698