summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rwxr-xr-xtools/valgrind/chrome_tests.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/valgrind/chrome_tests.py b/tools/valgrind/chrome_tests.py
index 405628d..4ef900e 100755
--- a/tools/valgrind/chrome_tests.py
+++ b/tools/valgrind/chrome_tests.py
@@ -78,6 +78,7 @@ class ChromeTests:
# Recognise the original abbreviations as well as full executable names.
self._test_list = {
"base": self.TestBase, "base_unittests": self.TestBase,
+ "browser": self.TestBrowser, "browser_tests": self.TestBrowser,
"googleurl": self.TestGURL, "googleurl_unittests": self.TestGURL,
"ipc": self.TestIpc, "ipc_tests": self.TestIpc,
"layout": self.TestLayout, "layout_tests": self.TestLayout,
@@ -225,6 +226,9 @@ class ChromeTests:
def TestBase(self):
return self.SimpleTest("base", "base_unittests")
+ def TestBrowser(self):
+ return self.SimpleTest("chrome", "browser_tests")
+
def TestGURL(self):
return self.SimpleTest("chrome", "googleurl_unittests")