Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(214)

Unified Diff: testing/tools/suppressor.py

Issue 1057983003: Refactor PDFium python test utilities. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Fix imports in one more file. Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « testing/tools/run_pixel_tests.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing/tools/suppressor.py
diff --git a/testing/tools/suppressor.py b/testing/tools/suppressor.py
new file mode 100755
index 0000000000000000000000000000000000000000..fff9bc8381f6bca6f6efb727379d7ca32239034a
--- /dev/null
+++ b/testing/tools/suppressor.py
@@ -0,0 +1,34 @@
+#!/usr/bin/env python
+# Copyright 2015 The PDFium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import os
+
+import common
+
+class Suppressor:
+ SUPPRESSIONS_FILENAME = 'SUPPRESSIONS'
+ PLATFORM_SUPPRESSIONS_FILENAME = 'SUPPRESSIONS_%s' % common.os_name()
+
+ def __init__(self, finder):
+ testing_dir = finder.TestingDir()
+ self.suppression_list = self._ExtractSuppressions(
+ os.path.join(testing_dir, self.SUPPRESSIONS_FILENAME))
+ self.platform_suppression_list = self._ExtractSuppressions(
+ os.path.join(testing_dir, self.PLATFORM_SUPPRESSIONS_FILENAME))
+
+ def _ExtractSuppressions(self, suppressions_filename):
+ with open(suppressions_filename) as f:
+ return [y for y in [x.split('#')[0].strip() for x in f.readlines()] if y]
+
+ def IsSuppressed(self, input_filename):
+ if input_filename in self.suppression_list:
+ print ("Not running %s, 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" %
+ (input_filename, self.PLATFORM_SUPPRESSIONS_FILENAME))
+ return True
+ return False
« no previous file with comments | « testing/tools/run_pixel_tests.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698