Index: tools/valgrind/chrome_tests.py |
=================================================================== |
--- tools/valgrind/chrome_tests.py (revision 85857) |
+++ tools/valgrind/chrome_tests.py (working copy) |
@@ -237,6 +237,9 @@ |
"--ui-test-action-timeout=120000", |
"--ui-test-action-max-timeout=280000"]) |
+ def TestCrypto(self): |
+ return self.SimpleTest("crypto", "crypto_unittests") |
+ |
def TestIpc(self): |
return self.SimpleTest("ipc", "ipc_tests", |
valgrind_test_args=["--trace_children"]) |
@@ -419,6 +422,7 @@ |
"automated_ui" : TestAutomatedUI, |
"base": TestBase, "base_unittests": TestBase, |
"browser": TestBrowser, "browser_tests": TestBrowser, |
+ "crypto":TestCrypto, "crypto_unittests":TestCrypto, |
Timur Iskhodzhanov
2011/05/19 16:41:31
nit: please add spaces after ":"
|
"googleurl": TestGURL, "googleurl_unittests": TestGURL, |
"courgette": TestCourgette, "courgette_unittests": TestCourgette, |
"ipc": TestIpc, "ipc_tests": TestIpc, |