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 | |
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')
-rwxr-xr-x | testing/tools/run_corpus_tests.py | 7 | ||||
-rwxr-xr-x | testing/tools/run_pixel_tests.py | 2 | ||||
-rwxr-xr-x | testing/tools/suppressor.py | 16 |
3 files changed, 17 insertions, 8 deletions
diff --git a/testing/tools/run_corpus_tests.py b/testing/tools/run_corpus_tests.py index 0c44cc6972..82c3d2aefe 100755 --- a/testing/tools/run_corpus_tests.py +++ b/testing/tools/run_corpus_tests.py @@ -74,7 +74,7 @@ def test_one_file_parallel(working_dir, pdfium_test_path, image_differ, def handle_result(test_suppressor, input_filename, input_path, result, surprises, failures): - if test_suppressor.IsSuppressed(input_filename): + if test_suppressor.IsResultSuppressed(input_filename): if result: surprises.append(input_path) else: @@ -127,8 +127,9 @@ def main(): for input_filename in filename_list: if input_file_re.match(input_filename): input_path = os.path.join(source_dir, input_filename) - if os.path.isfile(input_path): - test_cases.append((input_filename, source_dir)) + if not test_suppressor.IsExecutionSuppressed(input_path): + if os.path.isfile(input_path): + test_cases.append((input_filename, source_dir)) if options.num_workers > 1 and len(test_cases) > 1: try: 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, diff --git a/testing/tools/suppressor.py b/testing/tools/suppressor.py index a1c3171de1..b7629ef6f8 100755 --- a/testing/tools/suppressor.py +++ b/testing/tools/suppressor.py @@ -10,8 +10,10 @@ import common class Suppressor: def __init__(self, finder, feature_string): feature_vector = feature_string.strip().split(",") - v8_option = ["nov8", "v8"]["V8" in feature_vector] - xfa_option = ["noxfa", "xfa"]["XFA" in feature_vector] + self.has_v8 = "V8" in feature_vector + self.has_xfa = "XFA" in feature_vector + v8_option = "v8" if self.has_v8 else "nov8" + xfa_option = "xfa" if self.has_xfa else "noxfa" with open(os.path.join(finder.TestingDir(), 'SUPPRESSIONS')) as f: self.suppression_set = set(self._FilterSuppressions( common.os_name(), v8_option, xfa_option, self._ExtractSuppressions(f))) @@ -33,8 +35,14 @@ class Suppressor: ('*' in js_column or js in js_column) and ('*' in xfa_column or xfa in xfa_column)) - def IsSuppressed(self, input_filename): + def IsResultSuppressed(self, input_filename): if input_filename in self.suppression_set: - print "%s is suppressed" % input_filename + print "%s result is suppressed" % input_filename + return True + return False + + def IsExecutionSuppressed(self, input_filepath): + if "xfa_specific" in input_filepath and not self.has_xfa: + print "%s execution is suppressed" % input_filepath return True return False |