Commit ec7e7e9c authored by Jennifer Apacible's avatar Jennifer Apacible Committed by Commit Bot

Disable SequenceManagerFuzzerProcessorTest test on Linux.

Bug: 875170
TBR: altimin@chromium.org
Change-Id: Ibf452c3fd02fba616e58d7fe9fb4377684126f67
Reviewed-on: https://chromium-review.googlesource.com/1180495Reviewed-by: default avatarapacible <apacible@chromium.org>
Commit-Queue: apacible <apacible@chromium.org>
Cr-Commit-Position: refs/heads/master@{#584247}
parent c728915f
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
#include <memory> #include <memory>
#include "base/strings/strcat.h" #include "base/strings/strcat.h"
#include "build/build_config.h"
#include "testing/gmock/include/gmock/gmock.h" #include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h" #include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/platform/scheduler/base/proto/sequence_manager_test_description.pb.h" #include "third_party/blink/renderer/platform/scheduler/base/proto/sequence_manager_test_description.pb.h"
...@@ -1237,7 +1238,13 @@ TEST(SequenceManagerFuzzerProcessorTest, CreateThreadRecursively) { ...@@ -1237,7 +1238,13 @@ TEST(SequenceManagerFuzzerProcessorTest, CreateThreadRecursively) {
EXPECT_THAT(executed_actions, ContainerEq(expected_actions)); EXPECT_THAT(executed_actions, ContainerEq(expected_actions));
} }
TEST(SequenceManagerFuzzerProcessorTest, PostTaskToCreateThread) { // Disabled since this test is flaky on Linux. https://crbug.com/875170.
#if defined(OS_LINUX)
#define MAYBE_PostTaskToCreateThread DISABLED_PostTaskToCreateThread
#else
#define MAYBE_PostTaskToCreateThread PostTaskToCreateThread
#endif
TEST(SequenceManagerFuzzerProcessorTest, MAYBE_PostTaskToCreateThread) {
std::vector<std::vector<ActionForTest>> executed_actions; std::vector<std::vector<ActionForTest>> executed_actions;
std::vector<std::vector<TaskForTest>> executed_tasks; std::vector<std::vector<TaskForTest>> executed_tasks;
......
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