From e97942ca29bf7a0f9487ee549176375c36d9a1ea Mon Sep 17 00:00:00 2001 From: Jelle Foks Date: Wed, 16 Oct 2024 11:36:42 -0700 Subject: [PATCH] disable RecursivePostsDoNotFloodPipe also on Starboard --- base/task/single_thread_task_executor_unittest.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/task/single_thread_task_executor_unittest.cc b/base/task/single_thread_task_executor_unittest.cc index 5167b01065af..703733379912 100644 --- a/base/task/single_thread_task_executor_unittest.cc +++ b/base/task/single_thread_task_executor_unittest.cc @@ -1257,7 +1257,7 @@ TEST_P(SingleThreadTaskExecutorTypedTest, RunLoopQuitOrderAfter) { // On Linux, the pipe buffer size is 64KiB by default. The bug caused one byte // accumulated in the pipe per two posts, so we should repeat 128K times to // reproduce the bug. -#if BUILDFLAG(IS_CHROMEOS) +#if BUILDFLAG(IS_CHROMEOS) || defined(STARBOARD) // TODO(crbug.com/1188497): This test is unreasonably slow on CrOS and flakily // times out (100x slower than other platforms which take < 1s to complete // it).