diff options
author | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-11 23:08:17 +0000 |
---|---|---|
committer | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-11 23:08:17 +0000 |
commit | 542bf24a69172067524bee43954955fd5b6d2341 (patch) | |
tree | f13e99c1861a8097ddeafc3c500ea037cdc42015 /tools/valgrind | |
parent | e09b39da942e19d4becad8f9c7aadc206385b58b (diff) | |
download | chromium_src-542bf24a69172067524bee43954955fd5b6d2341.zip chromium_src-542bf24a69172067524bee43954955fd5b6d2341.tar.gz chromium_src-542bf24a69172067524bee43954955fd5b6d2341.tar.bz2 |
Enable remoting unittests to run on build bots
Renamed chromoting.gyp to remoting.gyp.
Also enabled remoting_unittests to be executed on the build bots.
Review URL: http://codereview.chromium.org/2720007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49609 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/valgrind')
-rwxr-xr-x | tools/valgrind/chrome_tests.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/valgrind/chrome_tests.py b/tools/valgrind/chrome_tests.py index 756caf3..f30c822 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, |