Commit ecf8a613 authored by Gauthier Ambard's avatar Gauthier Ambard Committed by Commit Bot

Disable FullscreenTestCase.testShowHeaderOnErrorPage

This CL disables the FullscreenTestCase.testShowHeaderOnErrorPage test
which is constently failing on iOS 10 devices.

Bug: 855368
Cq-Include-Trybots: luci.chromium.try:ios-simulator-full-configs;master.tryserver.chromium.mac:ios-simulator-cronet
Change-Id: I24b5e8cadb05505974af0e38e8e850593d03e386
Reviewed-on: https://chromium-review.googlesource.com/1111712
Commit-Queue: Rohit Rao <rohitrao@chromium.org>
Reviewed-by: default avatarRohit Rao <rohitrao@chromium.org>
Cr-Commit-Position: refs/heads/master@{#569618}
parent adc637e4
...@@ -427,6 +427,12 @@ void AssertURLIs(const GURL& expectedURL) { ...@@ -427,6 +427,12 @@ void AssertURLIs(const GURL& expectedURL) {
// Tests that the header is shown when loading an error page in a native view // Tests that the header is shown when loading an error page in a native view
// even if fullscreen was enabled previously. // even if fullscreen was enabled previously.
- (void)testShowHeaderOnErrorPage { - (void)testShowHeaderOnErrorPage {
#if TARGET_OS_SIMULATOR
if (!base::ios::IsRunningOnIOS11OrLater()) {
// TODO(crbug.com/855368): Reenable this test.
EARL_GREY_TEST_DISABLED(@"Test failing on iOS 10 devices");
}
#endif // TARGET_OS_SIMULATOR
std::map<GURL, std::string> responses; std::map<GURL, std::string> responses;
const GURL URL = web::test::HttpServer::MakeUrl("http://origin"); const GURL URL = web::test::HttpServer::MakeUrl("http://origin");
// A long page with some simple text -- a long page is necessary so that // A long page with some simple text -- a long page is necessary so that
......
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