diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-13 20:06:50 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-13 20:06:50 +0000 |
commit | 5020d0a7b98471fc48d690a256f428084d8c7ce2 (patch) | |
tree | 6f1f41da17a94d1035a599dc72b388a1239e32e8 /tools | |
parent | 0666aef37e02188ef4b4c8890c08c5665970d54e (diff) | |
download | chromium_src-5020d0a7b98471fc48d690a256f428084d8c7ce2.zip chromium_src-5020d0a7b98471fc48d690a256f428084d8c7ce2.tar.gz chromium_src-5020d0a7b98471fc48d690a256f428084d8c7ce2.tar.bz2 |
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
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/valgrind/chrome_tests.py | 1 |
1 files changed, 1 insertions, 0 deletions
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(): |