diff options
author | Yang Gao <yangg@google.com> | 2017-01-27 09:42:04 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-27 09:42:04 -0800 |
commit | 8daca99390a56ad1c8aba74cefcc85a5ac1aa78a (patch) | |
tree | 7b014dfb96a32c474796291f42133f417ecf4165 /test/core/end2end/tests/ping_pong_streaming.c | |
parent | ca6541fb5db395ed23b471cc1c1665c8e8a863b5 (diff) | |
parent | 55a046a4799a1c57193ecaea2bf12790c8c00bb4 (diff) |
Merge pull request #9466 from rjshade/add_test_log
Add "Running test:" string to test log output
Diffstat (limited to 'test/core/end2end/tests/ping_pong_streaming.c')
-rw-r--r-- | test/core/end2end/tests/ping_pong_streaming.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/core/end2end/tests/ping_pong_streaming.c b/test/core/end2end/tests/ping_pong_streaming.c index bd6b53ff19..65e43a6c9a 100644 --- a/test/core/end2end/tests/ping_pong_streaming.c +++ b/test/core/end2end/tests/ping_pong_streaming.c @@ -50,7 +50,7 @@ static grpc_end2end_test_fixture begin_test(grpc_end2end_test_config config, grpc_channel_args *client_args, grpc_channel_args *server_args) { grpc_end2end_test_fixture f; - gpr_log(GPR_INFO, "%s/%s", test_name, config.name); + gpr_log(GPR_INFO, "Running test: %s/%s", test_name, config.name); f = config.create_fixture(client_args, server_args); config.init_server(&f, server_args); config.init_client(&f, client_args); |