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

Side by Side Diff: tools/perf_expectations/make_expectations.py

Issue 8314002: Support updating perf_expectations.json on Windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 2 months 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | tools/perf_expectations/tests/perf_expectations_unittest.py » ('j') | 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/env python
2 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 2 # 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 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 6
7 import hashlib 7 import hashlib
8 import math 8 import math
9 import optparse 9 import optparse
10 import os 10 import os
11 import re 11 import re
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after
327 print 'done' 327 print 'done'
328 else: 328 else:
329 if options.verbose: 329 if options.verbose:
330 print '' 330 print ''
331 print 'No changes.' 331 print 'No changes.'
332 return 0 332 return 0
333 333
334 334
335 if __name__ == '__main__': 335 if __name__ == '__main__':
336 sys.exit(Main(sys.argv)) 336 sys.exit(Main(sys.argv))
OLDNEW
« no previous file with comments | « no previous file | tools/perf_expectations/tests/perf_expectations_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698