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

Side by Side Diff: tools/valgrind/test_suppressions.py

Issue 10134019: Set svn:executable bit on scripts that are executable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed pylintrc Created 8 years, 8 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 | « tools/valgrind/shard-all-tests.sh ('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/env python
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # 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
3 # found in the LICENSE file. 4 # found in the LICENSE file.
4 5
5 from collections import defaultdict 6 from collections import defaultdict
6 import os 7 import os
7 import re 8 import re
8 import sys 9 import sys
9 10
10 import path_utils 11 import path_utils
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 print ("%d unique reports don't match any of the suppressions" % 124 print ("%d unique reports don't match any of the suppressions" %
124 reports_count) 125 reports_count)
125 else: 126 else:
126 print "Congratulations! All reports are suppressed!" 127 print "Congratulations! All reports are suppressed!"
127 # TODO(timurrrr): also make sure none of the old suppressions 128 # TODO(timurrrr): also make sure none of the old suppressions
128 # were narrowed too much. 129 # were narrowed too much.
129 130
130 131
131 if __name__ == "__main__": 132 if __name__ == "__main__":
132 main(sys.argv[1:]) 133 main(sys.argv[1:])
OLDNEW
« no previous file with comments | « tools/valgrind/shard-all-tests.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698