| 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__':
|
|
|