Ignore "sputniktests" subdirectory from presubmit checks.

Review URL: http://codereview.chromium.org/385067


git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@3290 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
lrn@chromium.org 2009-11-12 12:11:40 +00:00
parent 1151b496bf
commit 931396e689

View File

@ -108,7 +108,7 @@ class SourceFileProcessor(object):
return True
def IgnoreDir(self, name):
return name.startswith('.') or name == 'data'
return name.startswith('.') or name == 'data' or name == 'sputniktests'
def IgnoreFile(self, name):
return name.startswith('.')