diff options
author | Tom Sepez <tsepez@chromium.org> | 2016-01-19 15:05:36 -0800 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2016-01-19 15:05:36 -0800 |
commit | 5c1efd404f6f0c6bc190101fad3a9977c4e2e6d2 (patch) | |
tree | 418dd43cb03f6c00638e16d941164ab5e9cc195c /testing/tools/run_javascript_tests.py | |
parent | fd5f130ac81537c9066f5fb7998fdf08f501b40e (diff) | |
download | pdfium-5c1efd404f6f0c6bc190101fad3a9977c4e2e6d2.tar.xz |
Merge to XFA: Hook up show-config to testing scripts.
Review URL: https://codereview.chromium.org/1607923004 .
(cherry picked from commit d40e189ba1ab515ef9b3df7928e215be150df336)
TBR=ochang@chromium.org
Review URL: https://codereview.chromium.org/1607113002 .
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: |