diff options
author | tsepez <tsepez@chromium.org> | 2016-04-18 17:15:42 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-04-18 17:15:42 -0700 |
commit | 86d945b2d24edade9c7175be1c31b246f54b04ca (patch) | |
tree | 771654816efbe6e3b521814dd7208a3d605d5e88 /testing/tools/run_pixel_tests.py | |
parent | f09bdfa90d6324813309e987a07b28c1b75aec72 (diff) | |
download | pdfium-86d945b2d24edade9c7175be1c31b246f54b04ca.tar.xz |
Exclude XFA-only corpus from non-xfa and roll corpus.
Test still need modification to process input events. For now,
we just suppress anything that diffs.
Review URL: https://codereview.chromium.org/1894083003
Diffstat (limited to 'testing/tools/run_pixel_tests.py')
-rwxr-xr-x | testing/tools/run_pixel_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/tools/run_pixel_tests.py b/testing/tools/run_pixel_tests.py index e2066e4811..1595ef7e45 100755 --- a/testing/tools/run_pixel_tests.py +++ b/testing/tools/run_pixel_tests.py @@ -90,7 +90,7 @@ def main(): if input_file_re.match(input_filename): input_path = os.path.join(source_dir, input_filename) if os.path.isfile(input_path): - if test_suppressor.IsSuppressed(input_filename): + if test_suppressor.IsResultSuppressed(input_filename): continue if not generate_and_test(input_filename, source_dir, working_dir, fixup_path, pdfium_test_path, image_differ, |