Reviewers: Jakob,

Description:
Exclude benchmark tests from presubmit check in a non-git checkout.

[email protected]

Please review this at https://codereview.chromium.org/83353002/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files (+5, -1 lines):
  M tools/presubmit.py


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
+            name == 'kraken' or
+            name == 'sunspider' or
+            name == 'octane')

   def IgnoreFile(self, name):
     return name.startswith('.')


--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to