diff options
Diffstat (limited to 'testing/tools/run_pixel_tests.py')
-rwxr-xr-x | testing/tools/run_pixel_tests.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testing/tools/run_pixel_tests.py b/testing/tools/run_pixel_tests.py index 8d838402f9..8a102f4c42 100755 --- a/testing/tools/run_pixel_tests.py +++ b/testing/tools/run_pixel_tests.py @@ -70,7 +70,8 @@ def main(): if not os.path.exists(working_dir): os.makedirs(working_dir) - test_suppressor = suppressor.Suppressor(finder) + feature_string = subprocess.check_output([pdfium_test_path, '--show-config']) + test_suppressor = suppressor.Suppressor(finder, feature_string) image_differ = pngdiffer.PNGDiffer(finder) input_files = [] |