summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xtools/heapcheck/chrome_tests.py4
-rwxr-xr-xtools/valgrind/chrome_tests.py4
2 files changed, 8 insertions, 0 deletions
diff --git a/tools/heapcheck/chrome_tests.py b/tools/heapcheck/chrome_tests.py
index a7849b5..a7394dc 100755
--- a/tools/heapcheck/chrome_tests.py
+++ b/tools/heapcheck/chrome_tests.py
@@ -92,6 +92,7 @@ class ChromeTests(object):
"crypto": self.TestCrypto, "crypto_unittests": self.TestCrypto,
"device": self.TestDevice, "device_unittests": self.TestDevice,
"googleurl": self.TestGURL, "googleurl_unittests": self.TestGURL,
+ "url": self.TestURL, "url_unittests": self.TestURL,
"ipc": self.TestIpc, "ipc_tests": self.TestIpc,
"layout": self.TestLayout, "layout_tests": self.TestLayout,
"media": self.TestMedia, "media_unittests": self.TestMedia,
@@ -282,6 +283,9 @@ class ChromeTests(object):
def TestGURL(self):
return self.SimpleTest("chrome", "googleurl_unittests")
+ def TestURL(self):
+ return self.SimpleTest("chrome", "url_unittests")
+
def TestIpc(self):
return self.SimpleTest("ipc", "ipc_tests")
diff --git a/tools/valgrind/chrome_tests.py b/tools/valgrind/chrome_tests.py
index 1ea10ea..2ac3070 100755
--- a/tools/valgrind/chrome_tests.py
+++ b/tools/valgrind/chrome_tests.py
@@ -289,6 +289,9 @@ class ChromeTests:
def TestGURL(self):
return self.SimpleTest("chrome", "googleurl_unittests")
+ def TestURL(self):
+ return self.SimpleTest("chrome", "url_unittests")
+
def TestIpc(self):
return self.SimpleTest("ipc", "ipc_tests",
valgrind_test_args=["--trace_children"])
@@ -519,6 +522,7 @@ class ChromeTests:
"ffmpeg": TestFFmpeg, "ffmpeg_unittests": TestFFmpeg,
"ffmpeg_regression_tests": TestFFmpegRegressions,
"googleurl": TestGURL, "googleurl_unittests": TestGURL,
+ "url": TestURL, "url_unittests": TestURL,
"gpu": TestGPU, "gpu_unittests": TestGPU,
"ipc": TestIpc, "ipc_tests": TestIpc,
"interactive_ui": TestInteractiveUI,