diff options
author | alecflett@chromium.org <alecflett@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-09 02:24:11 +0000 |
---|---|---|
committer | alecflett@chromium.org <alecflett@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-09 02:24:11 +0000 |
commit | fd1c7915c1ec55cbdf86f9789f6e25ba4718550d (patch) | |
tree | f7235ed610d998fc260efc11479c5f2446a34b8e /tools/valgrind/chrome_tests.py | |
parent | 04fe3783b031204d00c8ff70cd25fa31c6bceb20 (diff) | |
download | chromium_src-fd1c7915c1ec55cbdf86f9789f6e25ba4718550d.zip chromium_src-fd1c7915c1ec55cbdf86f9789f6e25ba4718550d.tar.gz chromium_src-fd1c7915c1ec55cbdf86f9789f6e25ba4718550d.tar.bz2 |
add --help-tests to list valgrind tests
BUG=
Review URL: https://chromiumcodereview.appspot.com/11090012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160769 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/valgrind/chrome_tests.py')
-rwxr-xr-x | tools/valgrind/chrome_tests.py | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tools/valgrind/chrome_tests.py b/tools/valgrind/chrome_tests.py index 8f25a84..73c3f9d 100755 --- a/tools/valgrind/chrome_tests.py +++ b/tools/valgrind/chrome_tests.py @@ -194,6 +194,26 @@ class ChromeTests: if gtest_filter: cmd.append("--gtest_filter=%s" % gtest_filter) + @staticmethod + def ShowTests(): + test_to_names = {} + for name, test_function in ChromeTests._test_list.iteritems(): + test_to_names.setdefault(test_function, []).append(name) + + name_to_aliases = {} + for names in test_to_names.itervalues(): + names.sort(key=lambda name: len(name)) + name_to_aliases[names[0]] = names[1:] + + print + print "Available tests:" + print "----------------" + for name, aliases in sorted(name_to_aliases.iteritems()): + if aliases: + print " {} (aka {})".format(name, ', '.join(aliases)) + else: + print " {}".format(name) + def SetupLdPath(self, requires_build_dir): if requires_build_dir: self._EnsureBuildDirFound() @@ -518,6 +538,9 @@ def _main(): parser = optparse.OptionParser("usage: %prog -b <dir> -t <test> " "[-t <test> ...]") parser.disable_interspersed_args() + + parser.add_option("", "--help-tests", dest="help_tests", action="store_true", + default=False, help="List all available tests") parser.add_option("-b", "--build_dir", help="the location of the compiler output") parser.add_option("-t", "--test", action="append", default=[], @@ -554,6 +577,10 @@ def _main(): else: logging_utils.config_root() + if options.help_tests: + ChromeTests.ShowTests() + return 0 + if not options.test: parser.error("--test not specified") |