Index: tools/valgrind/chrome_tests.py |
diff --git a/tools/valgrind/chrome_tests.py b/tools/valgrind/chrome_tests.py |
index 756caf39ce39cd7feb1a53e7e7f60e4bb2aae236..f30c822a3a1abb7e4ad2fdedb22e44ebed6567e1 100755 |
--- a/tools/valgrind/chrome_tests.py |
+++ b/tools/valgrind/chrome_tests.py |
@@ -235,6 +235,9 @@ class ChromeTests: |
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", |
valgrind_test_args=["--trace_children"]) |
@@ -388,6 +391,7 @@ class ChromeTests: |
"media": TestMedia, "media_unittests": TestMedia, |
"net": TestNet, "net_unittests": TestNet, |
"printing": TestPrinting, "printing_unittests": TestPrinting, |
+ "remoting": TestRemoting, "remoting_unittests": TestRemoting, |
"startup": TestStartup, "startup_tests": TestStartup, |
"sync": TestSync, "sync_unit_tests": TestSync, |
"test_shell": TestTestShell, "test_shell_tests": TestTestShell, |