summaryrefslogtreecommitdiffstats
path: root/tools/valgrind/chrome_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/valgrind/chrome_tests.py')
-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 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,