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

Unified Diff: Tools/Scripts/run-bindings-tests

Issue 24156003: Revert IDL compiler build flow to Perl, rename 'deprecated' (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 7 years, 3 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
« no previous file with comments | « Source/modules/modules.gypi ('k') | Tools/Scripts/webkitpy/bindings/main.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/Scripts/run-bindings-tests
diff --git a/Tools/Scripts/run-bindings-tests b/Tools/Scripts/run-bindings-tests
index 511da4ff5ca799a26de75d4da47bc7814fdbd6ce..856fb42b9fc12b415a22dd22f4854ae09adb956c 100755
--- a/Tools/Scripts/run-bindings-tests
+++ b/Tools/Scripts/run-bindings-tests
@@ -32,18 +32,19 @@ import sys
from webkitpy.common.system import executive
def main(argv):
- """Runs WebCore bindings code generators on test IDL files and compares
- the results with reference files.
+ """Runs Blink bindings IDL compiler on test IDL files and compares the
+ results with reference files.
Options:
--reset-results: Overwrites the reference files with the generated results.
-
+ --test-python: Run tests for Python compiler as well.
"""
reset_results = "--reset-results" in argv
+ test_python = "--test-python" in argv
from webkitpy.bindings.main import BindingsTests
- return BindingsTests(reset_results, executive.Executive()).main()
+ return BindingsTests(reset_results, test_python, executive.Executive()).main()
if __name__ == '__main__':
« no previous file with comments | « Source/modules/modules.gypi ('k') | Tools/Scripts/webkitpy/bindings/main.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698