Open magreenblatt opened 5 years ago
Marked as flaky because running --gtest_filter=ViewsTextfieldTest.TextfieldKeyEvent
directly succeeds (at M131).
Also failing consistently on MacOS (M132) with:
../../cef/tests/ceftests/views/textfield_unittest.cc:235: Failure
Expected equality of these values:
modifiers
Which is: 2
event.modifiers
Which is: 0
Also failing on Linux (M132) with a timeout.
Original report by me.
What steps will reproduce the problem?
Run
ceftests.exe --gtest_filter=Views*
.What is the expected output? What do you see instead?
All tests should pass. Instead,
ViewsTextfieldTest.TextfieldKeyEvent
reliably fails with:The failure suggests that the
EVENTFLAG_SHIFT_DOWN
applied inTranslateKey
(textfield_unittest.cc
) for the first character is somehow getting ignored.The test usually passes when run by itself or as part of
ViewsText*
.The
NOT IMPLEMENTED
appears harmless.What version of the product are you using? On what operating system?
M78 and master on Windows 10. It does not appear to be a new failure.