summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authormaruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-08-28 18:51:38 +0000
committermaruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-08-28 18:51:38 +0000
commit52bb3cc633a918c1b1f05ee83604a026befd2ea3 (patch)
tree15e729445848499eb8b018962e9224b4f4f9f126 /tools
parentda40963ea95c8a726affc6bfe27b8393dc667baa (diff)
downloadchromium_src-52bb3cc633a918c1b1f05ee83604a026befd2ea3.zip
chromium_src-52bb3cc633a918c1b1f05ee83604a026befd2ea3.tar.gz
chromium_src-52bb3cc633a918c1b1f05ee83604a026befd2ea3.tar.bz2
Ignore .run_test_cases files when generating .isolate files.
These files are generated by run_test_cases.py but are not necessary for test isolation. R=cmp@chromium.org NOTRY=true BUG= Review URL: https://chromiumcodereview.appspot.com/10892007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153702 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r--tools/isolate/isolate_common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/isolate/isolate_common.py b/tools/isolate/isolate_common.py
index aad09e4..f930bbf 100644
--- a/tools/isolate/isolate_common.py
+++ b/tools/isolate/isolate_common.py
@@ -63,7 +63,7 @@ def get_flavor():
def default_blacklist(f):
"""Filters unimportant files normally ignored."""
return (
- f.endswith(('.pyc', 'testserver.log')) or
+ f.endswith(('.pyc', '.run_test_cases', 'testserver.log')) or
_GIT_PATH in f or
_SVN_PATH in f or
f in ('.git', '.svn'))