From be659c08d2e719329a1f6cbeab6cee02c68817f1 Mon Sep 17 00:00:00 2001 From: Brett Chabot Date: Mon, 21 Sep 2009 17:48:26 -0700 Subject: [PATCH] Add build path info to runtest --list_tests BUG 2133198 --- testrunner/runtest.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/testrunner/runtest.py b/testrunner/runtest.py index 593d11d22..d76399db3 100755 --- a/testrunner/runtest.py +++ b/testrunner/runtest.py @@ -186,9 +186,13 @@ class TestRunner(object): def _DumpTests(self): """Prints out set of defined tests.""" - print "The following tests are currently defined:" + print "The following tests are currently defined:\n" + print "%-25s %-40s %s" % ("name", "build path", "description") + print "-" * 80 for test in self._known_tests: - print "%-15s %s" % (test.GetName(), test.GetDescription()) + print "%-25s %-40s %s" % (test.GetName(), test.GetBuildPath(), + test.GetDescription()) + print "\nSee %s for more information" % self._TEST_FILE_NAME def _DoBuild(self): logger.SilentLog("Building tests...")