summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorlzheng@chromium.org <lzheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-09 21:02:30 +0000
committerlzheng@chromium.org <lzheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-09 21:02:30 +0000
commit6d424968cc39d2f5812afe004fb904e3d8c9587a (patch)
tree44215af05493a493a405d5c7fb4e9968d1683dc9 /tools
parentcfe7b2417f003d77b22c61a02e44e41c94cc8b41 (diff)
downloadchromium_src-6d424968cc39d2f5812afe004fb904e3d8c9587a.zip
chromium_src-6d424968cc39d2f5812afe004fb904e3d8c9587a.tar.gz
chromium_src-6d424968cc39d2f5812afe004fb904e3d8c9587a.tar.bz2
Add safe_browsing_tests to valgrind.
BUG=64089 TEST=safe_browsing_tests runs okay with valgrind Review URL: http://codereview.chromium.org/5726002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@68764 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rwxr-xr-xtools/valgrind/chrome_tests.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/valgrind/chrome_tests.py b/tools/valgrind/chrome_tests.py
index c143bc6..f4a7c4c 100755
--- a/tools/valgrind/chrome_tests.py
+++ b/tools/valgrind/chrome_tests.py
@@ -240,6 +240,10 @@ class ChromeTests:
"--ui-test-action-timeout=120000",
"--ui-test-action-max-timeout=280000"])
+ def TestSafeBrowsing(self):
+ return self.SimpleTest("chrome", "safe_browsing_tests",
+ cmd_args=["--test-terminate-timeout=40000"])
+
def TestIpc(self):
return self.SimpleTest("ipc", "ipc_tests",
valgrind_test_args=["--trace_children"])
@@ -420,6 +424,7 @@ class ChromeTests:
"printing": TestPrinting, "printing_unittests": TestPrinting,
"reliability": TestReliability, "reliability_tests": TestReliability,
"remoting": TestRemoting, "remoting_unittests": TestRemoting,
+ "safe_browsing": TestSafeBrowsing, "safe_browsing_tests": TestSafeBrowsing,
"startup": TestStartup, "startup_tests": TestStartup,
"sync": TestSync, "sync_unit_tests": TestSync,
"test_shell": TestTestShell, "test_shell_tests": TestTestShell,