OLD | NEW |
1 #!/usr/bin/python | |
2 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
3 # 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 |
4 # found in the LICENSE file. | 3 # found in the LICENSE file. |
5 | 4 |
6 | 5 |
7 import logging | 6 import logging |
8 | 7 |
9 | 8 |
10 # Language values match constants in Sponge protocol buffer (sponge.proto). | 9 # Language values match constants in Sponge protocol buffer (sponge.proto). |
11 JAVA = 5 | 10 JAVA = 5 |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 self._Log(sorted(self.failed)) | 97 self._Log(sorted(self.failed)) |
99 if self.crashed: | 98 if self.crashed: |
100 logging.critical('Crashed:') | 99 logging.critical('Crashed:') |
101 self._Log(sorted(self.crashed)) | 100 self._Log(sorted(self.crashed)) |
102 if self.unknown: | 101 if self.unknown: |
103 logging.critical('Unknown:') | 102 logging.critical('Unknown:') |
104 self._Log(sorted(self.unknown)) | 103 self._Log(sorted(self.unknown)) |
105 if not self.GetAllBroken(): | 104 if not self.GetAllBroken(): |
106 logging.critical('Passed') | 105 logging.critical('Passed') |
107 logging.critical('*' * 80) | 106 logging.critical('*' * 80) |
OLD | NEW |