Commit 619c57bd authored by caitkp@google.com's avatar caitkp@google.com

Disable RenderViewImpltest.InsertCharacters (flaky on XP)

TBR=lambroslambrou@chromium.org
BUG=244562

Review URL: https://codereview.chromium.org/15827007

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202930 0039d316-1c4b-4281-b951-d872f2087c98
parent 13b46f47
...@@ -1182,7 +1182,13 @@ TEST_F(RenderViewImplTest, MAYBE_OnHandleKeyboardEvent) { ...@@ -1182,7 +1182,13 @@ TEST_F(RenderViewImplTest, MAYBE_OnHandleKeyboardEvent) {
// keyboard events through the RenderWidget::OnHandleInputEvent() function. // keyboard events through the RenderWidget::OnHandleInputEvent() function.
// This test is for preventing regressions caused only when we use non-US // This test is for preventing regressions caused only when we use non-US
// keyboards, such as Issue 10846. // keyboards, such as Issue 10846.
TEST_F(RenderViewImplTest, InsertCharacters) { // see http://crbug.com/244562
#if defined(OS_WIN)
#define MAYBE_InsertCharacters DISABLED_InsertCharacters
#else
#define MAYBE_InsertCharacters InsertCharacters
#endif
TEST_F(RenderViewImplTest, MAYBE_InsertCharacters) {
#if !defined(OS_MACOSX) #if !defined(OS_MACOSX)
static const struct { static const struct {
MockKeyboard::Layout layout; MockKeyboard::Layout layout;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment