diff options
author | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-10 17:47:33 +0000 |
---|---|---|
committer | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-10 17:47:33 +0000 |
commit | 42472133b8054fcdcb6af70db82d470cbaa604e2 (patch) | |
tree | 28901347a136896ae18388ed63d41bd4e1dc582a /tools | |
parent | cb6dbc5953beafe4801716bf8e87e3db771cc134 (diff) | |
download | chromium_src-42472133b8054fcdcb6af70db82d470cbaa604e2.zip chromium_src-42472133b8054fcdcb6af70db82d470cbaa604e2.tar.gz chromium_src-42472133b8054fcdcb6af70db82d470cbaa604e2.tar.bz2 |
Add support for content unit tests to memory bot scripts
BUG=90443
TEST=none
Review URL: http://codereview.chromium.org/7605028
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@96200 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/heapcheck/chrome_tests.py | 4 | ||||
-rwxr-xr-x | tools/valgrind/chrome_tests.py | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/tools/heapcheck/chrome_tests.py b/tools/heapcheck/chrome_tests.py index 8f2c216b..cc13703 100755 --- a/tools/heapcheck/chrome_tests.py +++ b/tools/heapcheck/chrome_tests.py @@ -83,6 +83,7 @@ class ChromeTests(object): "browser": self.TestBrowser, "browser_tests": self.TestBrowser, "crypto": self.TestCrypto, "crypto_unittests": self.TestCrypto, "googleurl": self.TestGURL, "googleurl_unittests": self.TestGURL, + "content": self.TestContent, "content_unittests": self.TestContent, "courgette": self.TestCourgette, "courgette_unittests": self.TestCourgette, "ipc": self.TestIpc, "ipc_tests": self.TestIpc, @@ -262,6 +263,9 @@ class ChromeTests(object): def TestGURL(self): return self.SimpleTest("chrome", "googleurl_unittests") + def TestContent(self): + return self.SimpleTest("content", "content_unittests") + def TestCourgette(self): return self.SimpleTest("courgette", "courgette_unittests") diff --git a/tools/valgrind/chrome_tests.py b/tools/valgrind/chrome_tests.py index 8520474..8cf5246a 100755 --- a/tools/valgrind/chrome_tests.py +++ b/tools/valgrind/chrome_tests.py @@ -213,6 +213,9 @@ class ChromeTests: def TestBase(self): return self.SimpleTest("base", "base_unittests") + def TestContent(self): + return self.SimpleTest("content", "content_unittests") + def TestCourgette(self): return self.SimpleTest("courgette", "courgette_unittests") @@ -422,6 +425,7 @@ class ChromeTests: "browser": TestBrowser, "browser_tests": TestBrowser, "crypto": TestCrypto, "crypto_unittests": TestCrypto, "googleurl": TestGURL, "googleurl_unittests": TestGURL, + "content": TestContent, "content_unittests": TestContent, "courgette": TestCourgette, "courgette_unittests": TestCourgette, "ipc": TestIpc, "ipc_tests": TestIpc, "interactive_ui": TestInteractiveUI, |