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

Unified Diff: chrome_elf/run_all_unittests.cc

Issue 2861793003: [chrome_elf] blacklist flaky tests (Closed)
Patch Set: override test launch: single process & no batching. Created 3 years, 7 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 | « chrome_elf/blacklist/test/blacklist_test.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_elf/run_all_unittests.cc
diff --git a/chrome_elf/run_all_unittests.cc b/chrome_elf/run_all_unittests.cc
index 0f2c930d84af4a2bb166e611215859031987ebd0..e40da2ddd23c49db07f52f4f3347e727613b816e 100644
--- a/chrome_elf/run_all_unittests.cc
+++ b/chrome_elf/run_all_unittests.cc
@@ -20,8 +20,8 @@ int main(int argc, char** argv) {
install_static::ScopedInstallDetails scoped_install_details;
base::TestSuite test_suite(argc, argv);
- int ret = base::LaunchUnitTests(
- argc, argv,
+ int ret = base::LaunchUnitTestsWithOptions(
+ argc, argv, 1, 0, true, // Single process, no batching, default jobs.
base::Bind(&base::TestSuite::Run, base::Unretained(&test_suite)));
return ret;
}
« no previous file with comments | « chrome_elf/blacklist/test/blacklist_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698