Commit c8c21de8 authored by Hiroki Nakagawa's avatar Hiroki Nakagawa Committed by Commit Bot

Sheriff: Disable WebEmbeddedWorkerImplTest for test flakiness

Bug: 1007616
Change-Id: I8f9d11ec78dd43210b3b3d5293f0b69b1a992fad
Tbr: nhiroki@chromium.org
Notry: true
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1824526Reviewed-by: default avatarHiroki Nakagawa <nhiroki@chromium.org>
Commit-Queue: Hiroki Nakagawa <nhiroki@chromium.org>
Cr-Commit-Position: refs/heads/master@{#699628}
parent edbe4bc4
...@@ -232,7 +232,8 @@ class WebEmbeddedWorkerImplTest : public testing::Test { ...@@ -232,7 +232,8 @@ class WebEmbeddedWorkerImplTest : public testing::Test {
} // namespace } // namespace
TEST_F(WebEmbeddedWorkerImplTest, TerminateSoonAfterStart) { // Disabled due to flakiness: https://crbug.com/1007616
TEST_F(WebEmbeddedWorkerImplTest, DISABLED_TerminateSoonAfterStart) {
worker_->StartWorkerContext( worker_->StartWorkerContext(
CreateStartData(), CreateStartData(),
/*installed_scripts_manager_params=*/nullptr, /*installed_scripts_manager_params=*/nullptr,
...@@ -245,7 +246,8 @@ TEST_F(WebEmbeddedWorkerImplTest, TerminateSoonAfterStart) { ...@@ -245,7 +246,8 @@ TEST_F(WebEmbeddedWorkerImplTest, TerminateSoonAfterStart) {
worker_->WaitForShutdownForTesting(); worker_->WaitForShutdownForTesting();
} }
TEST_F(WebEmbeddedWorkerImplTest, TerminateWhileWaitingForDebugger) { // Disabled due to flakiness: https://crbug.com/1007616
TEST_F(WebEmbeddedWorkerImplTest, DISABLED_TerminateWhileWaitingForDebugger) {
std::unique_ptr<WebEmbeddedWorkerStartData> start_data = CreateStartData(); std::unique_ptr<WebEmbeddedWorkerStartData> start_data = CreateStartData();
start_data->wait_for_debugger_mode = start_data->wait_for_debugger_mode =
WebEmbeddedWorkerStartData::kWaitForDebugger; WebEmbeddedWorkerStartData::kWaitForDebugger;
...@@ -260,7 +262,8 @@ TEST_F(WebEmbeddedWorkerImplTest, TerminateWhileWaitingForDebugger) { ...@@ -260,7 +262,8 @@ TEST_F(WebEmbeddedWorkerImplTest, TerminateWhileWaitingForDebugger) {
worker_->WaitForShutdownForTesting(); worker_->WaitForShutdownForTesting();
} }
TEST_F(WebEmbeddedWorkerImplTest, TerminateWhileLoadingScript) { // Disabled due to flakiness: https://crbug.com/1007616
TEST_F(WebEmbeddedWorkerImplTest, DISABLED_TerminateWhileLoadingScript) {
// Load the shadow page. // Load the shadow page.
worker_->StartWorkerContext( worker_->StartWorkerContext(
CreateStartData(), CreateStartData(),
...@@ -275,7 +278,8 @@ TEST_F(WebEmbeddedWorkerImplTest, TerminateWhileLoadingScript) { ...@@ -275,7 +278,8 @@ TEST_F(WebEmbeddedWorkerImplTest, TerminateWhileLoadingScript) {
worker_->WaitForShutdownForTesting(); worker_->WaitForShutdownForTesting();
} }
TEST_F(WebEmbeddedWorkerImplTest, ScriptNotFound) { // Disabled due to flakiness: https://crbug.com/1007616
TEST_F(WebEmbeddedWorkerImplTest, DISABLED_ScriptNotFound) {
// Load the shadow page. // Load the shadow page.
WebURL script_url = url_test_helpers::ToKURL(kNotFoundScriptURL); WebURL script_url = url_test_helpers::ToKURL(kNotFoundScriptURL);
WebURLResponse response; WebURLResponse response;
......
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