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

Unified Diff: tools/presubmit.py

Issue 9455088: Remove static initializers in v8. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Lint. Created 8 years, 10 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
« tools/check-static-initializers.sh ('K') | « tools/gyp/v8.gyp ('k') | 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 a5f4c614d04a800c816991bdc6a00f27101aa5f1..4d7ff6a5db38d850ce364e6332b0b568bbfb7b41 100755
--- a/tools/presubmit.py
+++ b/tools/presubmit.py
@@ -363,6 +363,11 @@ def GetOptions():
action="store_true")
return result
+def CheckStaticInitializers(workspace):
+ if os.name != "posix":
+ return True # Non-POSIX not supported yet.
+ return subprocess.call(
+ [ workspace + "/tools/check-static-initializers.sh" ]) == 0
def Main():
workspace = abspath(join(dirname(sys.argv[0]), '..'))
@@ -374,6 +379,8 @@ def Main():
success = CppLintProcessor().Run(workspace) and success
print "Running copyright header and trailing whitespaces check..."
success = SourceProcessor().Run(workspace) and success
+ print "Running static initializers check..."
+ success = CheckStaticInitializers(workspace) and success
if success:
return 0
else:
« tools/check-static-initializers.sh ('K') | « tools/gyp/v8.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698