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

Unified Diff: tools/valgrind/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 | « tools/heapcheck/chrome_tests.py ('k') | tools/valgrind/gtest_exclude/app_unittests.gtest-tsan.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/valgrind/chrome_tests.py
diff --git a/tools/valgrind/chrome_tests.py b/tools/valgrind/chrome_tests.py
index 6f86751adc17dff4c0846480d6d9e67385c21fa6..a56d10a4fecca62d7ff8ddd50ce72330e3d527b9 100755
--- a/tools/valgrind/chrome_tests.py
+++ b/tools/valgrind/chrome_tests.py
@@ -263,6 +263,9 @@ class ChromeTests:
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")
@@ -445,6 +448,8 @@ class ChromeTests:
"test_shell": TestTestShell, "test_shell_tests": TestTestShell,
"ui": TestUI, "ui_tests": TestUI,
"unit": TestUnit, "unit_tests": TestUnit,
+ "sql": TestSql, "sql_unittests": TestSql,
+ # TODO(rsesek): Temporary, remove after buildbot master restart.
"app": TestApp, "app_unittests": TestApp,
"ui_unit": TestUIUnit, "ui_unittests": TestUIUnit,
"gfx": TestGfx, "gfx_unittests": TestGfx,
« no previous file with comments | « tools/heapcheck/chrome_tests.py ('k') | tools/valgrind/gtest_exclude/app_unittests.gtest-tsan.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698