Revision: 3290 Author: [email protected] Date: Thu Nov 12 04:11:40 2009 Log: Ignore "sputniktests" subdirectory from presubmit checks.
Review URL: http://codereview.chromium.org/385067 http://code.google.com/p/v8/source/detail?r=3290 Modified: /branches/bleeding_edge/tools/presubmit.py ======================================= --- /branches/bleeding_edge/tools/presubmit.py Fri Sep 11 05:21:48 2009 +++ /branches/bleeding_edge/tools/presubmit.py Thu Nov 12 04:11:40 2009 @@ -108,7 +108,7 @@ 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('.') --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
