| 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);
|
| - });
|
| -};
|
| -
|
| })();
|
|
|