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

Unified Diff: Tools/GardeningServer/scripts/checkout.js

Issue 358173003: Remove rebaseline logic from GOM (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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 | « no previous file | Tools/GardeningServer/scripts/checkout_unittests.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/GardeningServer/scripts/checkout.js
diff --git a/Tools/GardeningServer/scripts/checkout.js b/Tools/GardeningServer/scripts/checkout.js
index 07b54c2a8f00e81bf5f67f59fbd81fff43e6f117..7ddc1f3ea0024cb45e49765ed07957f80957be31 100644
--- a/Tools/GardeningServer/scripts/checkout.js
+++ b/Tools/GardeningServer/scripts/checkout.js
@@ -68,22 +68,4 @@ checkout.rollout = function(revision, reason)
});
};
-checkout.rebaseline = function(failureInfoList, progressCallback, debugBotsCallback)
-{
- return checkoutAvailable().then(function() {
- var tests = {};
- for (var i = 0; i < failureInfoList.length; i++) {
- var failureInfo = failureInfoList[i];
- if (failureInfo.builderName.indexOf('dbg') != -1) {
- debugBotsCallback(failureInfo);
- continue;
- }
- tests[failureInfo.testName] = tests[failureInfo.testName] || {};
- tests[failureInfo.testName][failureInfo.builderName] =
- base.uniquifyArray(base.flattenArray(failureInfo.failureTypeList.map(results.failureTypeToExtensionList)));
- }
- net.post('/rebaselineall', JSON.stringify(tests)).then(progressCallback, progressCallback);
- });
-};
-
})();
« no previous file with comments | « no previous file | Tools/GardeningServer/scripts/checkout_unittests.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698