From 5020d0a7b98471fc48d690a256f428084d8c7ce2 Mon Sep 17 00:00:00 2001 From: "evan@chromium.org" Date: Wed, 13 May 2009 20:06:50 +0000 Subject: valgrind: print the gtest suppression list on startup. This is in the docs, but there are a lot of docs, and all the other files it's pulling flags from are printed during startup. Review URL: http://codereview.chromium.org/113358 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15990 0039d316-1c4b-4281-b951-d872f2087c98 --- tools/valgrind/chrome_tests.py | 1 + 1 file changed, 1 insertion(+) (limited to 'tools/valgrind/chrome_tests.py') diff --git a/tools/valgrind/chrome_tests.py b/tools/valgrind/chrome_tests.py index 00dcbf1..ec2ad74 100755 --- a/tools/valgrind/chrome_tests.py +++ b/tools/valgrind/chrome_tests.py @@ -176,6 +176,7 @@ class ChromeTests: for directory in self._data_dirs: filename = os.path.join(directory, name + ".gtest.txt") if os.path.exists(filename): + logging.info("reading gtest filters from %s" % filename) f = open(filename, 'r') for line in f.readlines(): if line.startswith("#") or line.startswith("//") or line.isspace(): -- cgit v1.1