summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--chrome/test/data/purify/ui_tests.gtest.txt2
-rw-r--r--tools/purify/chrome_tests.py1
2 files changed, 3 insertions, 0 deletions
diff --git a/chrome/test/data/purify/ui_tests.gtest.txt b/chrome/test/data/purify/ui_tests.gtest.txt
index e2e35e3..582b8ae 100644
--- a/chrome/test/data/purify/ui_tests.gtest.txt
+++ b/chrome/test/data/purify/ui_tests.gtest.txt
@@ -16,3 +16,5 @@ NPAPITester.ManyPlugins
# Bug: http://crbug.com/6584
SSLUITest.*
+# Bug: http://crbug.com/8675
+SessionRestoreUITest.RestoresCrossSiteForwardAndBackwardNavs
diff --git a/tools/purify/chrome_tests.py b/tools/purify/chrome_tests.py
index a9ce16c..a77e888 100644
--- a/tools/purify/chrome_tests.py
+++ b/tools/purify/chrome_tests.py
@@ -139,6 +139,7 @@ class ChromeTests:
filters = []
filename = os.path.join(self._data_dir, name + ".gtest.txt")
if os.path.exists(filename):
+ logging.info("using gtest filter from %s" % filename)
f = open(filename, 'r')
for line in f.readlines():
if line.startswith("#") or line.startswith("//") or line.isspace():