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

Unified Diff: tools/purify/purify_analyze.py

Issue 17457: Ignore "_ignore.txt" files when counting errors we want to fix sometime.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/purify/purify_analyze.py
===================================================================
--- tools/purify/purify_analyze.py (revision 7814)
+++ tools/purify/purify_analyze.py (working copy)
@@ -629,6 +629,7 @@
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)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698