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

Unified Diff: tools/code_coverage/coverage_posix.py

Issue 11377077: We need to build browser_tests during 'compile' step, so enabling in gypi. Disabled from running in… (Closed) Base URL: https://src.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 1 month 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/chrome_tests.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/code_coverage/coverage_posix.py
===================================================================
--- tools/code_coverage/coverage_posix.py (revision 166932)
+++ tools/code_coverage/coverage_posix.py (working copy)
@@ -648,6 +648,11 @@
# executable. So skip this test from adding into coverage_bundles.py.
if testname == 'pyautolib':
continue
+ # Random tests are failing in browser_tests. Disabling it for now.
+ # crbug.com/159748
+ if testname == 'browser_tests' and self.options.bundles:
+ logging.info('Skipping browser_tests from running')
+ continue
self.tests += [os.path.join(self.directory, testname)]
if gtest_filter:
self.test_filters[testname] = gtest_filter
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698