rebaseline_server was not allowing tests to be marked ignore-failure
(SkipBuildbotRuns) TBR=jcgregorio Review URL: https://codereview.chromium.org/59063005 git-svn-id: http://skia.googlecode.com/svn/trunk@12143 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
parent
56ad44b53a
commit
1e698afbc2
@ -64,7 +64,7 @@ Loader.controller(
|
||||
$scope.showSubmitAdvancedSettings = false;
|
||||
$scope.submitAdvancedSettings = {};
|
||||
$scope.submitAdvancedSettings['reviewed-by-human'] = true;
|
||||
$scope.submitAdvancedSettings['ignore-failures'] = false;
|
||||
$scope.submitAdvancedSettings['ignore-failure'] = false;
|
||||
$scope.submitAdvancedSettings['bug'] = '';
|
||||
|
||||
// Create the list of tabs (lists into which the user can file each
|
||||
@ -368,7 +368,7 @@ Loader.controller(
|
||||
$scope.submitAdvancedSettings['reviewed-by-human'];
|
||||
if (true == $scope.submitAdvancedSettings['ignore-failure']) {
|
||||
// if it's false, don't send it at all (just keep the default)
|
||||
expectedResult['ignoreFailure'] = true;
|
||||
expectedResult['ignore-failure'] = true;
|
||||
}
|
||||
expectedResult['bugs'] = bugs;
|
||||
|
||||
|
@ -160,7 +160,7 @@
|
||||
<input type="checkbox" ng-model="showSubmitAdvancedSettings">
|
||||
show
|
||||
<ul ng-hide="!showSubmitAdvancedSettings">
|
||||
<li ng-repeat="setting in ['reviewed-by-human', 'ignore-failures']">
|
||||
<li ng-repeat="setting in ['reviewed-by-human', 'ignore-failure']">
|
||||
{{setting}}
|
||||
<input type="checkbox" ng-model="submitAdvancedSettings[setting]">
|
||||
</li>
|
||||
|
Loading…
Reference in New Issue
Block a user