From db154e3e1bbc64d391470d7f15cbe0e192ba39d2 Mon Sep 17 00:00:00 2001 From: "pam@chromium.org" Date: Wed, 11 Mar 2009 18:49:29 +0000 Subject: Add hanging test to Purify gtest filter file. Report location of filter file in Purify script, for convenience. BUG=7810 TEST=covered by buildbot Review URL: http://codereview.chromium.org/42082 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11463 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/test/data/purify/ui_tests.gtest.txt | 2 ++ tools/purify/chrome_tests.py | 1 + 2 files changed, 3 insertions(+) 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(): -- cgit v1.1