| Index: build/android/pylib/utils/flakiness_dashboard_results_uploader.py
|
| ===================================================================
|
| --- build/android/pylib/utils/flakiness_dashboard_results_uploader.py (revision 178362)
|
| +++ build/android/pylib/utils/flakiness_dashboard_results_uploader.py (working copy)
|
| @@ -151,16 +151,13 @@
|
| self._test_results_map = {}
|
|
|
| def AddResults(self, test_results):
|
| - # TODO(frankf): Differentiate between fail/crash/timeouts.
|
| conversion_map = [
|
| (test_results.ok, False,
|
| json_results_generator.JSONResultsGeneratorBase.PASS_RESULT),
|
| (test_results.failed, True,
|
| json_results_generator.JSONResultsGeneratorBase.FAIL_RESULT),
|
| (test_results.crashed, True,
|
| - json_results_generator.JSONResultsGeneratorBase.FAIL_RESULT),
|
| - (test_results.timed_out, True,
|
| - json_results_generator.JSONResultsGeneratorBase.FAIL_RESULT),
|
| + "C"),
|
| (test_results.unknown, True,
|
| json_results_generator.JSONResultsGeneratorBase.NO_DATA_RESULT),
|
| ]
|
|
|