Index: tools/heapcheck/chrome_tests.py |
diff --git a/tools/heapcheck/chrome_tests.py b/tools/heapcheck/chrome_tests.py |
index fbc4174fa35cd49ffa3f5e5d6e53076f7aa5bb56..23c8e06cf1aa9cc1f691b03576cb60576c9d63f7 100755 |
--- a/tools/heapcheck/chrome_tests.py |
+++ b/tools/heapcheck/chrome_tests.py |
@@ -87,6 +87,7 @@ class ChromeTests(object): |
"media": self.TestMedia, "media_unittests": self.TestMedia, |
"net": self.TestNet, "net_unittests": self.TestNet, |
"printing": self.TestPrinting, "printing_unittests": self.TestPrinting, |
+ "remoting": self.TestRemoting, "remoting_unittests": self.TestRemoting, |
"startup": self.TestStartup, "startup_tests": self.TestStartup, |
"test_shell": self.TestTestShell, "test_shell_tests": self.TestTestShell, |
"ui": self.TestUI, "ui_tests": self.TestUI, |
@@ -254,6 +255,9 @@ class ChromeTests(object): |
def TestPrinting(self): |
return self.SimpleTest("chrome", "printing_unittests") |
+ def TestRemoting(self): |
+ return self.SimpleTest("chrome", "remoting_unittests") |
+ |
def TestIpc(self): |
return self.SimpleTest("ipc", "ipc_tests") |