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:

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;
|
||||
|
Reference in New Issue
Block a user