Polish names of tests

pull/11782/head
Muxi Yan 8 years ago
parent e9447a0068
commit 6f8217ba2f
  1. 6
      test/core/end2end/gen_build_yaml.py
  2. 6
      test/core/end2end/generate_tests.bzl
  3. 4
      test/core/end2end/tests/stream_compression_compressed_payload.c
  4. 4
      test/core/end2end/tests/stream_compression_payload.c
  5. 4
      test/core/end2end/tests/stream_compression_ping_pong_streaming.c

@ -137,10 +137,10 @@ END2END_TESTS = {
'shutdown_finishes_calls': default_test_options._replace(cpu_cost=LOWCPU),
'shutdown_finishes_tags': default_test_options._replace(cpu_cost=LOWCPU),
'simple_cacheable_request': default_test_options._replace(cpu_cost=LOWCPU),
'stream_compressed_payload': default_test_options._replace(proxyable=False,
'stream_compression_compressed_payload': default_test_options._replace(proxyable=False,
exclude_inproc=True),
'stream_payload': default_test_options._replace(exclude_inproc=True),
'stream_ping_pong_streaming': default_test_options._replace(exclude_inproc=True),
'stream_compression_payload': default_test_options._replace(exclude_inproc=True),
'stream_compression_ping_pong_streaming': default_test_options._replace(exclude_inproc=True),
'simple_delayed_request': connectivity_test_options,
'simple_metadata': default_test_options,
'simple_request': default_test_options,

@ -138,9 +138,9 @@ END2END_TESTS = {
'simple_metadata': test_options(),
'simple_request': test_options(),
'streaming_error_response': test_options(),
'stream_compressed_payload': test_options(proxyable=False, exclude_inproc=True),
'stream_payload': test_options(exclude_inproc=True),
'stream_ping_pong_streaming': test_options(exclude_inproc=True),
'stream_compression_compressed_payload': test_options(proxyable=False, exclude_inproc=True),
'stream_compression_payload': test_options(exclude_inproc=True),
'stream_compression_ping_pong_streaming': test_options(exclude_inproc=True),
'trailing_metadata': test_options(),
'authority_not_supported': test_options(),
'filter_latency': test_options(),

@ -640,7 +640,7 @@ static void test_stream_compression_override_message_compression(
/* ignored */ NULL, true, level, false, true, GRPC_COMPRESS_GZIP);
}
void stream_compressed_payload(grpc_end2end_test_config config) {
void stream_compression_compressed_payload(grpc_end2end_test_config config) {
test_invoke_request_with_compressed_payload(config);
test_invoke_request_with_send_message_before_initial_metadata(config);
test_invoke_request_with_server_level(config);
@ -649,4 +649,4 @@ void stream_compressed_payload(grpc_end2end_test_config config) {
test_stream_compression_override_message_compression(config);
}
void stream_compressed_payload_pre_init(void) {}
void stream_compression_compressed_payload_pre_init(void) {}

@ -297,9 +297,9 @@ static void test_invoke_10_request_response_with_payload(
config.tear_down_data(&f);
}
void stream_payload(grpc_end2end_test_config config) {
void stream_compression_payload(grpc_end2end_test_config config) {
test_invoke_request_response_with_payload(config);
test_invoke_10_request_response_with_payload(config);
}
void stream_payload_pre_init(void) {}
void stream_compression_payload_pre_init(void) {}

@ -280,7 +280,7 @@ static void test_pingpong_streaming(grpc_end2end_test_config config,
}
}
void stream_ping_pong_streaming(grpc_end2end_test_config config) {
void stream_compression_ping_pong_streaming(grpc_end2end_test_config config) {
int i;
for (i = 1; i < 10; i++) {
@ -288,4 +288,4 @@ void stream_ping_pong_streaming(grpc_end2end_test_config config) {
}
}
void stream_ping_pong_streaming_pre_init(void) {}
void stream_compression_ping_pong_streaming_pre_init(void) {}
Loading…
Cancel
Save