diff options
author | Paweł Hajdan, Jr <phajdan.jr@chromium.org> | 2015-03-04 17:12:46 +0100 |
---|---|---|
committer | Paweł Hajdan, Jr <phajdan.jr@chromium.org> | 2015-03-04 16:14:17 +0000 |
commit | c5f46a6e1a58d5a1662ad579f1d544268857df31 (patch) | |
tree | 3b3eeabc10f936b7e3d75a3a461ed2436dde342e /testing | |
parent | 160bd49360df9e542a427f84022d1624c7af70b5 (diff) | |
download | chromium_src-c5f46a6e1a58d5a1662ad579f1d544268857df31.zip chromium_src-c5f46a6e1a58d5a1662ad579f1d544268857df31.tar.gz chromium_src-c5f46a6e1a58d5a1662ad579f1d544268857df31.tar.bz2 |
Fix webkit scripts on Windows (explicitly use sys.executable)
BUG=460949
R=jochen@chromium.org
Review URL: https://codereview.chromium.org/970903005
Cr-Commit-Position: refs/heads/master@{#319074}
Diffstat (limited to 'testing')
-rwxr-xr-x | testing/scripts/webkit_lint.py | 1 | ||||
-rwxr-xr-x | testing/scripts/webkit_python_tests.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/testing/scripts/webkit_lint.py b/testing/scripts/webkit_lint.py index c33f87b..eeb9367 100755 --- a/testing/scripts/webkit_lint.py +++ b/testing/scripts/webkit_lint.py @@ -14,6 +14,7 @@ import common def main_run(args): with common.temporary_file() as tempfile_path: rc = common.run_command([ + sys.executable, os.path.join(common.SRC_DIR, 'third_party', 'WebKit', 'Tools', 'Scripts', 'lint-test-expectations'), '--json', tempfile_path diff --git a/testing/scripts/webkit_python_tests.py b/testing/scripts/webkit_python_tests.py index 582cf32..b0c2fbc 100755 --- a/testing/scripts/webkit_python_tests.py +++ b/testing/scripts/webkit_python_tests.py @@ -14,6 +14,7 @@ import common def main_run(args): with common.temporary_file() as tempfile_path: rc = common.run_command([ + sys.executable, os.path.join(common.SRC_DIR, 'third_party', 'WebKit', 'Tools', 'Scripts', 'test-webkitpy'), '--write-full-results-to', tempfile_path, |