diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-06-12 09:11:00 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-06-12 09:11:00 -0700 |
commit | 3218fffe6f92b62d05ab5c2d1c78285a0a0f0647 (patch) | |
tree | ba3754048f8544dbc7804cecc119228bd20a70c5 /testing/tools/suppressor.py | |
parent | d9e1477c88692ac6eaf8bd20a573a2fdccb1ff41 (diff) | |
download | pdfium-3218fffe6f92b62d05ab5c2d1c78285a0a0f0647.tar.xz |
Corpus tests check for unexpected successes.
Update run_corpus_tests.py to always run all test cases, and just
ignore the results that are supposed to fail.
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1178393002.
Diffstat (limited to 'testing/tools/suppressor.py')
-rwxr-xr-x | testing/tools/suppressor.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/tools/suppressor.py b/testing/tools/suppressor.py index fff9bc8381..2bb31171ab 100755 --- a/testing/tools/suppressor.py +++ b/testing/tools/suppressor.py @@ -24,11 +24,11 @@ class Suppressor: def IsSuppressed(self, input_filename): if input_filename in self.suppression_list: - print ("Not running %s, found in %s file" % + print ("%s is suppressed, found in %s file" % (input_filename, self.SUPPRESSIONS_FILENAME)) return True if input_filename in self.platform_suppression_list: - print ("Not running %s, found in %s file" % + print ("%s is suppressed, found in %s file" % (input_filename, self.PLATFORM_SUPPRESSIONS_FILENAME)) return True return False |