disable testKeepaliveWithV2API on InteropTestsRemote (#30870)

pull/30909/head
Jan Tattermusch 2 years ago committed by GitHub
parent 3d7fc93e1f
commit b9dfcc092e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      src/objective-c/tests/InteropTests/InteropTests.m

@ -1601,6 +1601,12 @@ static dispatch_once_t initGlobalInterceptorFactory;
- (void)testKeepaliveWithV2API {
GRPCTestRunWithFlakeRepeats(self, ^(GRPCTestWaiter waiterBlock, GRPCTestAssert assertBlock) {
// The test is highly flaky when ran as part of InteropTestsRemote
// TODO(jtattermusch): fix and re-enable the test.
if ([[self class] isRemoteTest]) {
return;
}
RMTTestService *service = [RMTTestService serviceWithHost:[[self class] host]];
if ([[self class] transport] == gGRPCCoreCronetID) {
// Cronet does not support keepalive

Loading…
Cancel
Save