diff options
Diffstat (limited to 'testing/tools/run_javascript_tests.py')
-rwxr-xr-x | testing/tools/run_javascript_tests.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/testing/tools/run_javascript_tests.py b/testing/tools/run_javascript_tests.py index 0c2401774e..b09ea49e78 100755 --- a/testing/tools/run_javascript_tests.py +++ b/testing/tools/run_javascript_tests.py @@ -63,6 +63,11 @@ def main(): if not os.path.exists(working_dir): os.makedirs(working_dir) + feature_string = subprocess.check_output([pdfium_test_path, '--show-config']) + if "V8" not in feature_string.strip().split(","): + print "V8 not enabled, skipping." + return 0 + input_files = [] if len(args): for file_name in args: |