OLD | NEW |
1 #!/usr/bin/python | 1 #!/usr/bin/python |
2 | 2 |
3 ''' | 3 ''' |
4 Copyright 2012 Google Inc. | 4 Copyright 2012 Google Inc. |
5 | 5 |
6 Use of this source code is governed by a BSD-style license that can be | 6 Use of this source code is governed by a BSD-style license that can be |
7 found in the LICENSE file. | 7 found in the LICENSE file. |
8 ''' | 8 ''' |
9 | 9 |
10 ''' | 10 ''' |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 'Test-Ubuntu12-ShuttleA-NoGPU-x86_64-Debug', | 82 'Test-Ubuntu12-ShuttleA-NoGPU-x86_64-Debug', |
83 'Test-Ubuntu13-ShuttleA-HD2000-x86_64-Debug-ASAN', | 83 'Test-Ubuntu13-ShuttleA-HD2000-x86_64-Debug-ASAN', |
84 'Test-Win7-ShuttleA-HD2000-x86-Debug', | 84 'Test-Win7-ShuttleA-HD2000-x86-Debug', |
85 'Test-Win7-ShuttleA-HD2000-x86-Debug-ANGLE', | 85 'Test-Win7-ShuttleA-HD2000-x86-Debug-ANGLE', |
86 'Test-Win7-ShuttleA-HD2000-x86-Debug-DirectWrite', | 86 'Test-Win7-ShuttleA-HD2000-x86-Debug-DirectWrite', |
87 'Test-Win7-ShuttleA-HD2000-x86-Release', | 87 'Test-Win7-ShuttleA-HD2000-x86-Release', |
88 'Test-Win7-ShuttleA-HD2000-x86-Release-ANGLE', | 88 'Test-Win7-ShuttleA-HD2000-x86-Release-ANGLE', |
89 'Test-Win7-ShuttleA-HD2000-x86-Release-DirectWrite', | 89 'Test-Win7-ShuttleA-HD2000-x86-Release-DirectWrite', |
90 'Test-Win7-ShuttleA-HD2000-x86_64-Debug', | 90 'Test-Win7-ShuttleA-HD2000-x86_64-Debug', |
91 'Test-Win7-ShuttleA-HD2000-x86_64-Release', | 91 'Test-Win7-ShuttleA-HD2000-x86_64-Release', |
| 92 'Test-Win8-ShuttleA-GTX660-x86-Debug', |
| 93 'Test-Win8-ShuttleA-GTX660-x86-Release', |
| 94 'Test-Win8-ShuttleA-GTX660-x86-Release-NVPR', |
| 95 'Test-Win8-ShuttleA-GTX660-x86_64-Debug', |
| 96 'Test-Win8-ShuttleA-GTX660-x86_64-Release', |
| 97 'Test-Win8-ShuttleA-HD7770-x86-Debug', |
| 98 'Test-Win8-ShuttleA-HD7770-x86-Release', |
| 99 'Test-Win8-ShuttleA-HD7770-x86_64-Debug', |
| 100 'Test-Win8-ShuttleA-HD7770-x86_64-Release', |
92 ] | 101 ] |
93 | 102 |
94 # TODO: Get this from builder_name_schema in buildbot. | 103 # TODO: Get this from builder_name_schema in buildbot. |
95 TRYBOT_SUFFIX = '-Trybot' | 104 TRYBOT_SUFFIX = '-Trybot' |
96 | 105 |
97 | 106 |
98 class _InternalException(Exception): | 107 class _InternalException(Exception): |
99 pass | 108 pass |
100 | 109 |
101 class ExceptionHandler(object): | 110 class ExceptionHandler(object): |
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
481 except: | 490 except: |
482 exception_handler.RaiseExceptionOrContinue() | 491 exception_handler.RaiseExceptionOrContinue() |
483 else: | 492 else: |
484 try: | 493 try: |
485 raise _InternalException('expectations_json_file %s not found' % | 494 raise _InternalException('expectations_json_file %s not found' % |
486 expectations_json_file) | 495 expectations_json_file) |
487 except: | 496 except: |
488 exception_handler.RaiseExceptionOrContinue() | 497 exception_handler.RaiseExceptionOrContinue() |
489 | 498 |
490 exception_handler.ReportAllFailures() | 499 exception_handler.ReportAllFailures() |
OLD | NEW |