| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 | 5 |
| 6 # Represents status of the analysis result of a Chromium waterfall compile/test | 6 # Represents status of the analysis result of a Chromium waterfall compile/test |
| 7 # failure or a Chrome crash. | 7 # failure or a Chrome crash. |
| 8 UNSPECIFIED = -1 |
| 8 FOUND_CORRECT = 0 | 9 FOUND_CORRECT = 0 |
| 9 FOUND_INCORRECT = 10 | 10 FOUND_INCORRECT = 10 |
| 10 NOT_FOUND_INCORRECT = 20 | 11 NOT_FOUND_INCORRECT = 20 |
| 11 FOUND_UNTRIAGED = 30 | 12 FOUND_UNTRIAGED = 30 |
| 12 NOT_FOUND_UNTRIAGED = 40 | 13 NOT_FOUND_UNTRIAGED = 40 |
| 13 NOT_FOUND_CORRECT = 50 | 14 NOT_FOUND_CORRECT = 50 |
| 14 PARTIALLY_CORRECT_FOUND = 60 | 15 PARTIALLY_CORRECT_FOUND = 60 |
| 15 FOUND_CORRECT_DUPLICATE = 1000 | 16 FOUND_CORRECT_DUPLICATE = 1000 |
| 16 FOUND_INCORRECT_DUPLICATE = 1010 | 17 FOUND_INCORRECT_DUPLICATE = 1010 |
| 17 | 18 |
| 18 | 19 |
| 19 RESULT_STATUS_TO_DESCRIPTION = { | 20 RESULT_STATUS_TO_DESCRIPTION = { |
| 20 FOUND_CORRECT: 'Correct - Found', | 21 FOUND_CORRECT: 'Correct - Found', |
| 21 FOUND_INCORRECT: 'Incorrect - Found', | 22 FOUND_INCORRECT: 'Incorrect - Found', |
| 22 NOT_FOUND_INCORRECT: 'Incorrect - Not Found', | 23 NOT_FOUND_INCORRECT: 'Incorrect - Not Found', |
| 23 FOUND_UNTRIAGED: 'Untriaged - Found', | 24 FOUND_UNTRIAGED: 'Untriaged - Found', |
| 24 NOT_FOUND_UNTRIAGED: 'Untriaged - Not Found', | 25 NOT_FOUND_UNTRIAGED: 'Untriaged - Not Found', |
| 25 NOT_FOUND_CORRECT: 'Correct - Not Found', | 26 NOT_FOUND_CORRECT: 'Correct - Not Found', |
| 26 PARTIALLY_CORRECT_FOUND : 'Partially Correct - Found', | 27 PARTIALLY_CORRECT_FOUND: 'Partially Correct - Found', |
| 27 FOUND_CORRECT_DUPLICATE: 'Correct(duplicate) - Found', | 28 FOUND_CORRECT_DUPLICATE: 'Correct(duplicate) - Found', |
| 28 FOUND_INCORRECT_DUPLICATE: 'Incorrect(duplicate) - Found' | 29 FOUND_INCORRECT_DUPLICATE: 'Incorrect(duplicate) - Found' |
| 29 } | 30 } |
| OLD | NEW |