diff options
author | pamg@google.com <pamg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-10 00:09:04 +0000 |
---|---|---|
committer | pamg@google.com <pamg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-10 00:09:04 +0000 |
commit | 2b6d3661bc32d0399b1440ce9b5f1d75faa9bfa8 (patch) | |
tree | b51a270c2c4e256dae471d9e1f20d39e7baf2749 /tools/purify/purify_analyze.py | |
parent | 1c3d2f78045d3d9a442f9b6280a540854c986d3e (diff) | |
download | chromium_src-2b6d3661bc32d0399b1440ce9b5f1d75faa9bfa8.zip chromium_src-2b6d3661bc32d0399b1440ce9b5f1d75faa9bfa8.tar.gz chromium_src-2b6d3661bc32d0399b1440ce9b5f1d75faa9bfa8.tar.bz2 |
Ignore "_ignore.txt" files when counting errors we want to fix sometime.
BUG=5469
TEST=make sure errors in _ignore files in, say, base/data/purify/ don't show
up in the buildbot's count of errors we need to fix
Review URL: http://codereview.chromium.org/17457
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7844 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/purify/purify_analyze.py')
-rw-r--r-- | tools/purify/purify_analyze.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/purify/purify_analyze.py b/tools/purify/purify_analyze.py index 6865697..68d7667 100644 --- a/tools/purify/purify_analyze.py +++ b/tools/purify/purify_analyze.py @@ -629,6 +629,7 @@ class PurifyAnalyze: if (not os.path.basename(path).startswith(self._name) or not path.endswith(".txt") or path.endswith("gtest.txt") or + path.endswith("_ignore.txt") or not os.path.isfile(path)): continue msgs = self._MessageHashesFromFile(path) |