Commit f77194e3 authored by Justin Cohen's avatar Justin Cohen Committed by Commit Bot

[ios] Disable ios_web_inttests::ForwardPostNavigation on iOS12

TBR=eugenebut@chromium.org

Bug: 854615
Cq-Include-Trybots: luci.chromium.try:ios-simulator-full-configs;master.tryserver.chromium.mac:ios-simulator-cronet
Change-Id: I7cc280c03203696c0fa00081b15736d6245d4ba5
Reviewed-on: https://chromium-review.googlesource.com/1107880Reviewed-by: default avatarJustin Cohen <justincohen@chromium.org>
Commit-Queue: Justin Cohen <justincohen@chromium.org>
Cr-Commit-Position: refs/heads/master@{#568837}
parent f7d47b7e
......@@ -5,6 +5,7 @@
#include <memory>
#include <string>
#include "base/ios/ios_util.h"
#include "base/scoped_observer.h"
#include "base/strings/stringprintf.h"
#include "ios/testing/embedded_test_server_handlers.h"
......@@ -1159,6 +1160,10 @@ TEST_F(NavigationAndLoadCallbacksTest, ReloadPostNavigation) {
// Tests going forward to a page rendered from post response.
TEST_F(NavigationAndLoadCallbacksTest, ForwardPostNavigation) {
// TODO(crbug.com/854615): Test fails on iOS12.
if (base::ios::IsRunningOnIOS12OrLater()) {
return;
}
const GURL url = test_server_->GetURL("/form?echo");
const GURL action = test_server_->GetURL("/echo");
......
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