summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjamesr <jamesr@chromium.org>2014-10-24 17:33:59 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-25 00:34:13 +0000
commit070a7168be40e0c279b14796a961e0b741dc4331 (patch)
treefffed691e39c14cc2e1eec9deb28be1488b78a87
parent983ea9c604a95c348a9194c7ae690a402a0dc2f1 (diff)
downloadchromium_src-070a7168be40e0c279b14796a961e0b741dc4331.zip
chromium_src-070a7168be40e0c279b14796a961e0b741dc4331.tar.gz
chromium_src-070a7168be40e0c279b14796a961e0b741dc4331.tar.bz2
Remove tests from tools/valgrind/chrome_tests.py that are going away
The code for these test binaries is being removed from the chromium repo (see https://groups.google.com/a/chromium.org/forum/#!topic/chromium-dev/nAwEbgCrUio) so we don't need to have the mappings in the tools/valgrind/chrome_tests.py script in the chromium repository. R=bruening@chromium.org Review URL: https://codereview.chromium.org/681493003 Cr-Commit-Position: refs/heads/master@{#301245}
-rwxr-xr-xtools/valgrind/chrome_tests.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/tools/valgrind/chrome_tests.py b/tools/valgrind/chrome_tests.py
index 9b0b52f..43caaa4 100755
--- a/tools/valgrind/chrome_tests.py
+++ b/tools/valgrind/chrome_tests.py
@@ -397,15 +397,9 @@ class ChromeTests:
def TestMessageCenter(self):
return self.SimpleTest("message_center", "message_center_unittests")
- def TestMojoAppsJS(self):
- return self.SimpleTest("mojo_apps_js", "mojo_apps_js_unittests")
-
def TestMojoCommon(self):
return self.SimpleTest("mojo_common", "mojo_common_unittests")
- def TestMojoJS(self):
- return self.SimpleTest("mojo_js", "mojo_js_unittests")
-
def TestMojoPublicBindings(self):
return self.SimpleTest("mojo_public_bindings",
"mojo_public_bindings_unittests")
@@ -426,16 +420,9 @@ class ChromeTests:
return self.SimpleTest("mojo_public_utility",
"mojo_public_utility_unittests")
- def TestMojoApplicationManager(self):
- return self.SimpleTest("mojo_application_manager",
- "mojo_application_manager_unittests")
-
def TestMojoSystem(self):
return self.SimpleTest("mojo_system", "mojo_system_unittests")
- def TestMojoViewManager(self):
- return self.SimpleTest("mojo_view_manager", "mojo_view_manager_unittests")
-
def TestNet(self):
return self.SimpleTest("net", "net_unittests")
@@ -702,17 +689,12 @@ class ChromeTests:
"media": TestMedia, "media_unittests": TestMedia,
"message_center": TestMessageCenter,
"message_center_unittests" : TestMessageCenter,
- "mojo_apps_js": TestMojoAppsJS,
"mojo_common": TestMojoCommon,
- "mojo_js": TestMojoJS,
- "mojo_system": TestMojoSystem,
"mojo_public_system": TestMojoPublicSystem,
"mojo_public_utility": TestMojoPublicUtility,
"mojo_public_bindings": TestMojoPublicBindings,
"mojo_public_env": TestMojoPublicEnv,
"mojo_public_sysperf": TestMojoPublicSysPerf,
- "mojo_application_manager": TestMojoApplicationManager,
- "mojo_view_manager": TestMojoViewManager,
"net": TestNet, "net_unittests": TestNet,
"net_perf": TestNetPerf, "net_perftests": TestNetPerf,
"phonenumber": TestPhoneNumber,