Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(215)

Side by Side Diff: tools/rebaseline.py

Issue 117433003: Add Win8 bots to rebaseline.py, add baselines for Win8 (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: NOTRY Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « expectations/gm/Test-Win8-ShuttleA-HD7770-x86_64-Release/expected-results.json ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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()
OLDNEW
« no previous file with comments | « expectations/gm/Test-Win8-ShuttleA-HD7770-x86_64-Release/expected-results.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698