Commit a4095e87 authored by inglorion's avatar inglorion Committed by Commit Bot

Disable flaky WebViewAPITest.TestWebRequestAPIWithHeaders on Linux

This test was re-enabled in crrev.com/c/1110151, but creates noise on
the bots because it is flaky. Disabling it for now to stop the noise.

Bug: 873792
Change-Id: I4c136a36d916bc8096ebba6d8d5839dea22533cf
Reviewed-on: https://chromium-review.googlesource.com/1173406Reviewed-by: default avatarIstiaque Ahmed <lazyboy@chromium.org>
Reviewed-by: default avatarHans Wennborg <hans@chromium.org>
Commit-Queue: Bob Haarman <inglorion@chromium.org>
Cr-Commit-Position: refs/heads/master@{#583834}
parent d0a0f4b3
......@@ -45,6 +45,7 @@
#include "net/test/embedded_test_server/embedded_test_server.h"
#include "net/test/embedded_test_server/http_request.h"
#include "net/test/embedded_test_server/http_response.h"
#include "services/network/public/cpp/features.h"
#include "ui/display/display_switches.h"
#if defined(USE_AURA)
......@@ -754,6 +755,12 @@ IN_PROC_BROWSER_TEST_F(WebViewAPITest, TestWebRequestAPI) {
#define MAYBE_TestWebRequestAPIWithHeaders TestWebRequestAPIWithHeaders
#endif
IN_PROC_BROWSER_TEST_F(WebViewAPITest, MAYBE_TestWebRequestAPIWithHeaders) {
#if defined(OS_LINUX)
if (base::FeatureList::IsEnabled(network::features::kNetworkService)) {
// Flaky on Linux, https://crbug.com/873792
return;
}
#endif // defined(OS_LINUX)
std::string app_location = "web_view/apitest";
StartTestServer(app_location);
RunTest("testWebRequestAPIWithHeaders", app_location);
......
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