0

Disable flaky cast test on Android and Linux.

Bug: 374999320
Change-Id: I110f71a0f1243c04d5308af49dd8c6179cb7b465
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5954447
Reviewed-by: Vigen Issahhanjan <vigeni@google.com>
Commit-Queue: Justin Donnelly <jdonnelly@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1372366}
This commit is contained in:
Justin Donnelly
2024-10-22 22:08:19 +00:00
committed by Chromium LUCI CQ
parent b7025d1dd0
commit b7ee795c64

@ -230,8 +230,16 @@ TEST_F(GrpcServerStreamingTest, ServerStreamingCallIsCancelledByClient) {
task_environment_.RunUntilIdle();
}
// Flaky on Android and Linux, see https://crbug.com/374999320.
#if BUILDFLAG(IS_ANDROID) || BUILDFLAG(IS_LINUX)
#define MAYBE_ServerStreamingCallIsCancelledByClientInActiveReactor \
DISABLED_ServerStreamingCallIsCancelledByClientInActiveReactor
#else
#define MAYBE_ServerStreamingCallIsCancelledByClientInActiveReactor \
ServerStreamingCallIsCancelledByClientInActiveReactor
#endif
TEST_F(GrpcServerStreamingTest,
ServerStreamingCallIsCancelledByClientInActiveReactor) {
MAYBE_ServerStreamingCallIsCancelledByClientInActiveReactor) {
GrpcServer server;
base::WaitableEvent server_request_received;