Commit 78174be3 authored by Robbie Gibson's avatar Robbie Gibson Committed by Commit Bot

[iOS] Disable two tests failing on iPhone SE

See https://ci.chromium.org/p/chrome/builders/ci/iphone-simulator/3784
for a sample failing run for both tests.

Bug: 999079, 999080
Change-Id: I1b7e6ec449828fb971a708d77b5297ff25f9711b
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1776020Reviewed-by: default avatarMark Cogan <marq@chromium.org>
Commit-Queue: Robbie Gibson <rkgibson@google.com>
Cr-Commit-Position: refs/heads/master@{#691980}
parent 3c8dbeb2
...@@ -4054,6 +4054,10 @@ id<GREYMatcher> SearchIconButton() { ...@@ -4054,6 +4054,10 @@ id<GREYMatcher> SearchIconButton() {
// Tests the new folder name is committed when name editing is interrupted by // Tests the new folder name is committed when name editing is interrupted by
// navigating away. // navigating away.
- (void)testNewFolderNameCommittedOnNavigatingAway { - (void)testNewFolderNameCommittedOnNavigatingAway {
// TODO(crbug.com/999079): Reenable for iPhone SE.
if (UIScreen.mainScreen.bounds.size.height == 568) {
EARL_GREY_TEST_DISABLED(@"Test disabled on iPhone SE.");
}
[BookmarksTestCase setupStandardBookmarks]; [BookmarksTestCase setupStandardBookmarks];
[BookmarksTestCase openBookmarks]; [BookmarksTestCase openBookmarks];
[BookmarksTestCase openMobileBookmarks]; [BookmarksTestCase openMobileBookmarks];
...@@ -4411,6 +4415,10 @@ id<GREYMatcher> SearchIconButton() { ...@@ -4411,6 +4415,10 @@ id<GREYMatcher> SearchIconButton() {
// Tests that long press on scrim while search box is enabled dismisses the // Tests that long press on scrim while search box is enabled dismisses the
// search controller. // search controller.
- (void)testSearchLongPressOnScrimCancelsSearchController { - (void)testSearchLongPressOnScrimCancelsSearchController {
// TODO(crbug.com/999080): Reenable for iPhone SE.
if (UIScreen.mainScreen.bounds.size.height == 568) {
EARL_GREY_TEST_DISABLED(@"Test disabled on iPhone SE.");
}
[BookmarksTestCase setupStandardBookmarks]; [BookmarksTestCase setupStandardBookmarks];
[BookmarksTestCase openBookmarks]; [BookmarksTestCase openBookmarks];
[BookmarksTestCase openMobileBookmarks]; [BookmarksTestCase openMobileBookmarks];
......
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