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

Unified Diff: tools/presubmit.py

Issue 83353002: Exclude benchmark tests from presubmit check in a non-git checkout. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 1 month 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/presubmit.py
diff --git a/tools/presubmit.py b/tools/presubmit.py
index 1ab63477745846c7f8926efa0106b06caadd1fd5..6977f604c0f38db01bde286aef73d1ad91cb5e93 100755
--- a/tools/presubmit.py
+++ b/tools/presubmit.py
@@ -191,7 +191,11 @@ class SourceFileProcessor(object):
return True
def IgnoreDir(self, name):
- return name.startswith('.') or name == 'data' or name == 'sputniktests'
+ return (name.startswith('.') or
+ name == 'data' or
Jakob Kummerow 2013/11/22 12:18:23 shorter: name in ('data', 'kraken', 'octane', 'sun
+ name == 'kraken' or
+ name == 'sunspider' or
+ name == 'octane')
def IgnoreFile(self, name):
return name.startswith('.')
« 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