summaryrefslogtreecommitdiff
path: root/testing/tools/run_pixel_tests.py
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2015-03-26 16:29:05 -0700
committerTom Sepez <tsepez@chromium.org>2015-03-26 16:29:05 -0700
commit84e50d58496622af351cd27da51479059736923d (patch)
tree1358a04b895e9692b4a3a2d65522b15ffcf6ca64 /testing/tools/run_pixel_tests.py
parent30506b41ea88cf6743c314743ce477e8186a3945 (diff)
downloadpdfium-84e50d58496622af351cd27da51479059736923d.tar.xz
Replace linux-specific code in test scripts.
Now that there's a win bot, this needs to be more careful. R=thestig@chromium.org Review URL: https://codereview.chromium.org/1036073002
Diffstat (limited to 'testing/tools/run_pixel_tests.py')
-rwxr-xr-xtesting/tools/run_pixel_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/tools/run_pixel_tests.py b/testing/tools/run_pixel_tests.py
index 0665718ef4..0123583a5e 100755
--- a/testing/tools/run_pixel_tests.py
+++ b/testing/tools/run_pixel_tests.py
@@ -32,7 +32,7 @@ def generate_and_test(input_filename, source_dir, working_dir,
try:
sys.stdout.flush()
subprocess.check_call(
- [fixup_path, '--output-dir=' + working_dir, input_path])
+ [sys.executable, fixup_path, '--output-dir=' + working_dir, input_path])
subprocess.check_call([pdfium_test_path, '--png', pdf_path])
i = 0;
while True: