Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
ctiller committed Jan 24, 2025
1 parent e72a2d2 commit b389c2e
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions test/core/end2end/tests/request_with_flags.cc
Original file line number Diff line number Diff line change
Expand Up @@ -142,28 +142,24 @@ CORE_END2END_TEST(CoreEnd2endTest, BadFlagsOnRecvStatusOnClient) {
}

CORE_END2END_TEST(CoreEnd2endTest, WriteBufferIntAcceptedOnSendMessage) {
SKIP_IF_V3();
InvokeRequestWithFlags(
*this, {{GRPC_OP_SEND_MESSAGE, GRPC_WRITE_BUFFER_HINT}}, GRPC_CALL_OK);
}

CORE_END2END_TEST(CoreEnd2endTest, WriteNoCompressAcceptedOnSendMessage) {
SKIP_IF_V3();
InvokeRequestWithFlags(
*this, {{GRPC_OP_SEND_MESSAGE, GRPC_WRITE_NO_COMPRESS}}, GRPC_CALL_OK);
}

CORE_END2END_TEST(CoreEnd2endTest,
WriteBufferHintAndNoCompressAcceptedOnSendMessage) {
SKIP_IF_V3();
InvokeRequestWithFlags(
*this,
{{GRPC_OP_SEND_MESSAGE, GRPC_WRITE_BUFFER_HINT | GRPC_WRITE_NO_COMPRESS}},
GRPC_CALL_OK);
}

CORE_END2END_TEST(CoreEnd2endTest, WriteInternalCompressAcceptedOnSendMessage) {
SKIP_IF_V3();
InvokeRequestWithFlags(*this,
{{GRPC_OP_SEND_MESSAGE, GRPC_WRITE_INTERNAL_COMPRESS}},
GRPC_CALL_OK);
Expand Down

0 comments on commit b389c2e

Please sign in to comment.