summaryrefslogtreecommitdiff
path: root/testing/tools/suppressor.py
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2015-06-12 09:27:46 -0700
committerTom Sepez <tsepez@chromium.org>2015-06-12 09:27:46 -0700
commit7dac05808121e6ac40a9911e71e6391c88432a62 (patch)
tree8c085ef0384f85a75d36cf0f7c08fd45cb50c9ff /testing/tools/suppressor.py
parent5bba2b63759940ab2ac134bf376310e72b7adf47 (diff)
downloadpdfium-7dac05808121e6ac40a9911e71e6391c88432a62.tar.xz
Merge to XFA: Corpus tests check for unexpected successes.
Original Review URL: https://codereview.chromium.org/1178393002. TBR=thestig@chromium.org Review URL: https://codereview.chromium.org/1184803002.
Diffstat (limited to 'testing/tools/suppressor.py')
-rwxr-xr-xtesting/tools/suppressor.py4
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