From df728320bfde290001e24869bf9ddab11f4ee81c Mon Sep 17 00:00:00 2001 From: Ojan Vafai Date: Wed, 19 Nov 2014 12:26:53 -0800 Subject: [PATCH] Change test type of flakiness dashboard uploads to match buildbot step name. Flakiness dashboard assumed each buildbot step corresponds to one test suite. So, it assumes the test type matches the buildbot step name. This fix is somewhat hacky in that we won't be able to make other test suites in mojob test upload to the flakiness dashboard, but that's technical debt we already have from smashing multiple test suites into one buildbot step. R=eseidel@chromium.org Review URL: https://codereview.chromium.org/725993003 --- tools/webkitpy/layout_tests/controllers/manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/webkitpy/layout_tests/controllers/manager.py b/tools/webkitpy/layout_tests/controllers/manager.py index 4642918c903..4d4057fdef8 100644 --- a/tools/webkitpy/layout_tests/controllers/manager.py +++ b/tools/webkitpy/layout_tests/controllers/manager.py @@ -442,7 +442,7 @@ class Manager(object): _log.debug("Uploading JSON files for builder: %s", self._options.builder_name) attrs = [("builder", self._options.builder_name), - ("testtype", "layout-tests"), + ("testtype", "mojob test"), ("master", self._options.master_name)] files = [(file, self._filesystem.join(self._results_directory, file)) for file in ["failing_results.json", "full_results.json", "times_ms.json"]]