diff options
author | rsesek@chromium.org <rsesek@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-09 13:35:06 +0000 |
---|---|---|
committer | rsesek@chromium.org <rsesek@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-09 13:35:06 +0000 |
commit | 0a7cbf904d69d1d2a63efe0cb01a49bc5521d405 (patch) | |
tree | 5dff9942fd2c535fecf9622c44226d92e4e8d510 /tools/valgrind/chrome_tests.py | |
parent | 80bfbb9dc3480dd28908b4bb4a20385a68de8998 (diff) | |
download | chromium_src-0a7cbf904d69d1d2a63efe0cb01a49bc5521d405.zip chromium_src-0a7cbf904d69d1d2a63efe0cb01a49bc5521d405.tar.gz chromium_src-0a7cbf904d69d1d2a63efe0cb01a49bc5521d405.tar.bz2 |
Add support for sql_unittests to chrome_tests.py.
BUG=72317
TEST=chrome_tests.sh -t sql
Review URL: http://codereview.chromium.org/7273087
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91956 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/valgrind/chrome_tests.py')
-rwxr-xr-x | tools/valgrind/chrome_tests.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/valgrind/chrome_tests.py b/tools/valgrind/chrome_tests.py index 55ec970..1934770 100755 --- a/tools/valgrind/chrome_tests.py +++ b/tools/valgrind/chrome_tests.py @@ -253,6 +253,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") @@ -434,6 +437,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, |