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

Side by Side Diff: tools/valgrind/shard-all-tests.sh

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/regrind.sh ('k') | tools/valgrind/test_suppressions.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 #!/bin/sh 1 #!/bin/sh
2 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Copyright (c) 2009 The Chromium Authors. All rights reserved.
4 # 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
5 # found in the LICENSE file. 4 # found in the LICENSE file.
6 5
7 # Script to run tests under tools/valgrind/chrome_tests.sh 6 # Script to run tests under tools/valgrind/chrome_tests.sh
8 # in a loop looking for rare/flaky valgrind warnings, and 7 # in a loop looking for rare/flaky valgrind warnings, and
9 # generate suppressions for them, to be later filed as bugs 8 # generate suppressions for them, to be later filed as bugs
10 # and added to our suppressions file. 9 # and added to our suppressions file.
11 # 10 #
12 # FIXME: Layout tests are a bit funny - they have their own 11 # FIXME: Layout tests are a bit funny - they have their own
13 # sharding control, and should probably be tweaked to obey 12 # sharding control, and should probably be tweaked to obey
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 then 119 then
121 mkdir -p shard-results/$iter 120 mkdir -p shard-results/$iter
122 mv `egrep -l "$PATTERN" *.vlog` shard-results/$iter 121 mv `egrep -l "$PATTERN" *.vlog` shard-results/$iter
123 # ideally we'd only save the .vtmp's corresponding to the .vlogs we saved 122 # ideally we'd only save the .vtmp's corresponding to the .vlogs we saved
124 mv *.vtmp shard-results/$iter 123 mv *.vtmp shard-results/$iter
125 fi 124 fi
126 125
127 rm -rf *.vlog *.vtmp || true 126 rm -rf *.vlog *.vtmp || true
128 iter=`expr $iter + 1` 127 iter=`expr $iter + 1`
129 done 128 done
OLDNEW
« no previous file with comments | « tools/valgrind/regrind.sh ('k') | tools/valgrind/test_suppressions.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698