Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1475)

Unified Diff: chrome/browser/chromeos/extensions/input_view_browsertest.cc

Issue 311083002: Disable InputViewBrowserTests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/extensions/input_view_browsertest.cc
diff --git a/chrome/browser/chromeos/extensions/input_view_browsertest.cc b/chrome/browser/chromeos/extensions/input_view_browsertest.cc
index 2136b8632c68b6c4f3732459542b58094f061f7a..98750f126222cd93bcd626824c406affbc065e13 100644
--- a/chrome/browser/chromeos/extensions/input_view_browsertest.cc
+++ b/chrome/browser/chromeos/extensions/input_view_browsertest.cc
@@ -74,28 +74,33 @@ class InputViewBrowserTest : public VirtualKeyboardBrowserTest {
}
};
-IN_PROC_BROWSER_TEST_F(InputViewBrowserTest, TypingTest) {
+// Disabled for leaking memory: http://crbug.com/380537
+IN_PROC_BROWSER_TEST_F(InputViewBrowserTest, DISABLED_TypingTest) {
std::string id = InstallIMEExtension();
ASSERT_FALSE(id.empty());
RunTest(base::FilePath("typing_test.js"),
InputViewConfig(id, kDefaultLayout));
}
-IN_PROC_BROWSER_TEST_F(InputViewBrowserTest, CompactTypingTest) {
+// Disabled for leaking memory: http://crbug.com/380537
+IN_PROC_BROWSER_TEST_F(InputViewBrowserTest, DISABLED_CompactTypingTest) {
std::string id = InstallIMEExtension();
ASSERT_FALSE(id.empty());
RunTest(base::FilePath("typing_test.js"),
InputViewConfig(id, kCompactLayout));
}
-IN_PROC_BROWSER_TEST_F(InputViewBrowserTest, KeysetTransitionTest) {
+// Disabled for leaking memory: http://crbug.com/380537
+IN_PROC_BROWSER_TEST_F(InputViewBrowserTest, DISABLED_KeysetTransitionTest) {
std::string id = InstallIMEExtension();
ASSERT_FALSE(id.empty());
RunTest(base::FilePath("keyset_transition_test.js"),
InputViewConfig(id, kDefaultLayout));
}
-IN_PROC_BROWSER_TEST_F(InputViewBrowserTest, CompactKeysetTransitionTest) {
+// Disabled for leaking memory: http://crbug.com/380537
+IN_PROC_BROWSER_TEST_F(InputViewBrowserTest,
+ DISABLED_CompactKeysetTransitionTest) {
std::string id = InstallIMEExtension();
ASSERT_FALSE(id.empty());
RunTest(base::FilePath("keyset_transition_test.js"),
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698