aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c
diff options
context:
space:
mode:
authorGravatar Muxi Yan <mxyan@google.com>2017-01-05 21:04:40 -0800
committerGravatar Muxi Yan <mxyan@google.com>2017-01-05 22:53:47 -0800
commitdc739bd659384252ae31234a439f1abcd7a512ff (patch)
tree805667f336c24e28f05b9106f4a5c87b1a7fbb9e /src/objective-c
parent1da51ce3f6f9f9f11f617f7a7acb379df4086a06 (diff)
Remove packet coalescing testing on chttp2
Diffstat (limited to 'src/objective-c')
-rw-r--r--src/objective-c/tests/CoreCronetEnd2EndTests/CoreCronetEnd2EndTests.m9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/objective-c/tests/CoreCronetEnd2EndTests/CoreCronetEnd2EndTests.m b/src/objective-c/tests/CoreCronetEnd2EndTests/CoreCronetEnd2EndTests.m
index fe9a7c2247..315d942484 100644
--- a/src/objective-c/tests/CoreCronetEnd2EndTests/CoreCronetEnd2EndTests.m
+++ b/src/objective-c/tests/CoreCronetEnd2EndTests/CoreCronetEnd2EndTests.m
@@ -168,6 +168,9 @@ static grpc_end2end_test_config configs[] = {
chttp2_tear_down_secure_fullstack},
};
+extern void packet_coalescing(grpc_end2end_test_config config);
+extern void packet_coalescing_pre_init(void);
+
static char *roots_filename;
@interface CoreCronetEnd2EndTests : XCTestCase
@@ -347,7 +350,11 @@ static char *roots_filename;
}
- (void)testPacketCoalescing {
- [self testIndividualCase:"packet_coalescing"];
+ // Directly invoke the test function since the test is for Cronet only and thus not included in
+ // end2end_tests.c
+ // TODO (mxyan): Do the same to all test cases so that this file will no longer depend on
+ // end2end_tests.c
+ packet_coalescing(configs[0]);
}
- (void)testPayload {