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

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

Issue 8910001: Update Linux size expectations. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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 | Annotate | Revision Log
« no previous file with comments | « tools/perf_expectations/README.txt ('k') | tools/perf_expectations/perf_expectations.json » ('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/env 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 # For instructions see:
7 # http://www.chromium.org/developers/tree-sheriffs/perf-sheriffs
6 8
7 import hashlib 9 import hashlib
8 import math 10 import math
9 import optparse 11 import optparse
10 import os 12 import os
11 import re 13 import re
12 import subprocess 14 import subprocess
13 import sys 15 import sys
14 import time 16 import time
15 import urllib2 17 import urllib2
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
339 print 'done' 341 print 'done'
340 else: 342 else:
341 if options.verbose: 343 if options.verbose:
342 print '' 344 print ''
343 print 'No changes.' 345 print 'No changes.'
344 return 0 346 return 0
345 347
346 348
347 if __name__ == '__main__': 349 if __name__ == '__main__':
348 sys.exit(Main(sys.argv)) 350 sys.exit(Main(sys.argv))
OLDNEW
« no previous file with comments | « tools/perf_expectations/README.txt ('k') | tools/perf_expectations/perf_expectations.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698