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

Unified Diff: scripts/slave/runtest.py

Issue 373223003: Implemented parsing of the ignored failing tests spec and ignoring respective failures. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Fixed a typo Created 6 years, 5 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 | « scripts/common/unittests/gtest_utils_test.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/runtest.py
diff --git a/scripts/slave/runtest.py b/scripts/slave/runtest.py
index f67002000f85c3699ee6194734285e2cc50f295e..5bcac537a1dddeb06c5d8144fe26f58be58c8cd5 100755
--- a/scripts/slave/runtest.py
+++ b/scripts/slave/runtest.py
@@ -1012,7 +1012,7 @@ def _MainMac(options, args, extra_env):
_UploadGtestJsonSummary(json_file_name,
options.build_properties,
test_exe)
- results_tracker.ProcessJSONFile()
+ results_tracker.ProcessJSONFile(options.build_dir)
if options.generate_json_file:
if not _GenerateJSONForTestResults(options, results_tracker):
@@ -1286,7 +1286,7 @@ def _MainLinux(options, args, extra_env):
_UploadGtestJsonSummary(json_file_name,
options.build_properties,
test_exe)
- results_tracker.ProcessJSONFile()
+ results_tracker.ProcessJSONFile(options.build_dir)
if options.generate_json_file:
if not _GenerateJSONForTestResults(options, results_tracker):
@@ -1405,7 +1405,7 @@ def _MainWin(options, args, extra_env):
_UploadGtestJsonSummary(json_file_name,
options.build_properties,
test_exe)
- results_tracker.ProcessJSONFile()
+ results_tracker.ProcessJSONFile(options.build_dir)
if options.enable_pageheap:
slave_utils.SetPageHeap(build_dir, 'chrome.exe', False)
« no previous file with comments | « scripts/common/unittests/gtest_utils_test.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698