| Index: tools/heapcheck/chrome_tests.py
|
| diff --git a/tools/heapcheck/chrome_tests.py b/tools/heapcheck/chrome_tests.py
|
| index c3fc592c0d62eb7f8bc3e66d169d47748643d241..f4c6aa57866921d57b2b0e37fb48e0b0d07f8dde 100755
|
| --- a/tools/heapcheck/chrome_tests.py
|
| +++ b/tools/heapcheck/chrome_tests.py
|
| @@ -81,6 +81,7 @@ class ChromeTests(object):
|
| self._test_list = {
|
| "base": self.TestBase, "base_unittests": self.TestBase,
|
| "browser": self.TestBrowser, "browser_tests": self.TestBrowser,
|
| + "crypto": self.TestCrypto, "crypto_unittests": self.TestCrypto,
|
| "googleurl": self.TestGURL, "googleurl_unittests": self.TestGURL,
|
| "courgette": self.TestCourgette,
|
| "courgette_unittests": self.TestCourgette,
|
| @@ -254,6 +255,9 @@ class ChromeTests(object):
|
| def TestBrowser(self):
|
| return self.SimpleTest("chrome", "browser_tests")
|
|
|
| + def TestCrypto(self):
|
| + return self.SimpleTest("crypto", "crypto_unittests")
|
| +
|
| def TestGURL(self):
|
| return self.SimpleTest("chrome", "googleurl_unittests")
|
|
|
|
|