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

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: Improved test coverage 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
Index: scripts/slave/runtest.py
diff --git a/scripts/slave/runtest.py b/scripts/slave/runtest.py
index 5fdcaff862a117c802f79ac08ca8caa98ba4805e..7c72af8737ed3b36d65f55e2af43e594b7ea022b 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):
@@ -1283,7 +1283,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):
@@ -1402,7 +1402,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)
« scripts/common/unittests/gtest_utils_test.py ('K') | « 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