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

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

Issue 218333002: Disable VirtualKeyboardBrowserTest.* for now. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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/virtual_keyboard_browsertest.cc
diff --git a/chrome/browser/chromeos/extensions/virtual_keyboard_browsertest.cc b/chrome/browser/chromeos/extensions/virtual_keyboard_browsertest.cc
index 34ec260b2f15ead4bedba87eec004603e3b4dbfa..aca1050b45ecf3f13e5797d5bc28306ee68f784d 100644
--- a/chrome/browser/chromeos/extensions/virtual_keyboard_browsertest.cc
+++ b/chrome/browser/chromeos/extensions/virtual_keyboard_browsertest.cc
@@ -118,27 +118,35 @@ class VirtualKeyboardBrowserTest : public InProcessBrowserTest {
std::string utf8_content_;
};
-IN_PROC_BROWSER_TEST_F(VirtualKeyboardBrowserTest, AttributesTest) {
+// Broken due to Polymer version mismatch http://crbug.com/357946.
+IN_PROC_BROWSER_TEST_F(VirtualKeyboardBrowserTest, DISABLED_AttributesTest) {
RunTest(base::FilePath(FILE_PATH_LITERAL("attributes_test.js")));
}
-IN_PROC_BROWSER_TEST_F(VirtualKeyboardBrowserTest, TypingTest) {
+// Broken due to Polymer version mismatch http://crbug.com/357946.
+IN_PROC_BROWSER_TEST_F(VirtualKeyboardBrowserTest, DISABLED_TypingTest) {
RunTest(base::FilePath(FILE_PATH_LITERAL("typing_test.js")));
}
-IN_PROC_BROWSER_TEST_F(VirtualKeyboardBrowserTest, ControlKeysTest) {
+// Broken due to Polymer version mismatch http://crbug.com/357946.
+IN_PROC_BROWSER_TEST_F(VirtualKeyboardBrowserTest, DISABLED_ControlKeysTest) {
RunTest(base::FilePath(FILE_PATH_LITERAL("control_keys_test.js")));
}
-IN_PROC_BROWSER_TEST_F(VirtualKeyboardBrowserTest, HideKeyboardKeyTest) {
+// Broken due to Polymer version mismatch http://crbug.com/357946.
+IN_PROC_BROWSER_TEST_F(VirtualKeyboardBrowserTest,
+ DISABLED_HideKeyboardKeyTest) {
RunTest(base::FilePath(FILE_PATH_LITERAL("hide_keyboard_key_test.js")));
}
-IN_PROC_BROWSER_TEST_F(VirtualKeyboardBrowserTest, KeysetTransitionTest) {
+// Broken due to Polymer version mismatch http://crbug.com/357946.
+IN_PROC_BROWSER_TEST_F(VirtualKeyboardBrowserTest,
+ DISABLED_KeysetTransitionTest) {
RunTest(base::FilePath(FILE_PATH_LITERAL("keyset_transition_test.js")));
}
-IN_PROC_BROWSER_TEST_F(VirtualKeyboardBrowserTest, IsKeyboardLoaded) {
+// Broken due to Polymer version mismatch http://crbug.com/357946.
+IN_PROC_BROWSER_TEST_F(VirtualKeyboardBrowserTest, DISABLED_IsKeyboardLoaded) {
content::RenderViewHost* keyboard_rvh = GetKeyboardRenderViewHost();
ASSERT_TRUE(keyboard_rvh);
bool loaded = false;
@@ -151,7 +159,8 @@ IN_PROC_BROWSER_TEST_F(VirtualKeyboardBrowserTest, IsKeyboardLoaded) {
ASSERT_TRUE(loaded);
}
-IN_PROC_BROWSER_TEST_F(VirtualKeyboardBrowserTest, EndToEndTest) {
+// Broken due to Polymer version mismatch http://crbug.com/357946.
+IN_PROC_BROWSER_TEST_F(VirtualKeyboardBrowserTest, DISABLED_EndToEndTest) {
// Get the virtual keyboard's render view host.
content::RenderViewHost* keyboard_rvh = GetKeyboardRenderViewHost();
ASSERT_TRUE(keyboard_rvh);
« 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