Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Unified Diff: tools/heapcheck/chrome_tests.py

Issue 7273087: Add support for sql_unittests to chrome_tests.py. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix valgrind Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tools/valgrind/chrome_tests.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/heapcheck/chrome_tests.py
diff --git a/tools/heapcheck/chrome_tests.py b/tools/heapcheck/chrome_tests.py
index 46e7b892311a80fb90c936368046827c3288c9e8..7a63a3e506e07a0f11b8cda75532d7e7c9149f75 100755
--- a/tools/heapcheck/chrome_tests.py
+++ b/tools/heapcheck/chrome_tests.py
@@ -96,6 +96,8 @@ class ChromeTests(object):
"test_shell": self.TestTestShell, "test_shell_tests": self.TestTestShell,
"ui": self.TestUI, "ui_tests": self.TestUI,
"unit": self.TestUnit, "unit_tests": self.TestUnit,
+ "sql": self.TestSql, "sql_unittests": self.TestSql,
+ # TODO(rsesek): Temporary, remove after buildbot master restart.
"app": self.TestApp, "app_unittests": self.TestApp,
"ui_unit": self.TestUIUnit, "ui_unittests": self.TestUIUnit,
"gfx": self.TestGfx, "gfx_unittests": self.TestGfx,
@@ -295,6 +297,9 @@ class ChromeTests(object):
def TestUnit(self):
return self.SimpleTest("chrome", "unit_tests")
+ def TestSql(self):
+ return self.SimpleTest("chrome", "sql_unittests")
+
def TestApp(self):
return self.SimpleTest("chrome", "app_unittests")
« no previous file with comments | « no previous file | tools/valgrind/chrome_tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698