diff options
author | David Garcia Quintas <dgq@google.com> | 2015-05-31 16:02:47 -0700 |
---|---|---|
committer | David Garcia Quintas <dgq@google.com> | 2015-05-31 16:07:45 -0700 |
commit | 7978a04d50d7a92af27437545bb6bd10058c0c4d (patch) | |
tree | 39b05d78046a6cc7a80846ee4d9e2afc94bf7057 | |
parent | 2e378c89f89820941d1b30ad8c8b501fefa213b0 (diff) |
Removed non-ISO usage of __FUNCTION__.
Fixes #1843
-rw-r--r-- | test/core/security/auth_context_test.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/core/security/auth_context_test.c b/test/core/security/auth_context_test.c index 54548bf1fc..2fb0c01f6f 100644 --- a/test/core/security/auth_context_test.c +++ b/test/core/security/auth_context_test.c @@ -43,7 +43,7 @@ static void test_empty_context(void) { grpc_auth_context *ctx = grpc_auth_context_create(NULL, 0); grpc_auth_property_iterator it; - gpr_log(GPR_INFO, __FUNCTION__); + gpr_log(GPR_INFO, "test_empty_context"); GPR_ASSERT(ctx != NULL); GPR_ASSERT(grpc_auth_context_peer_identity_property_name(ctx) == NULL); it = grpc_auth_context_peer_identity(ctx); @@ -60,7 +60,7 @@ static void test_simple_context(void) { grpc_auth_property_iterator it; size_t i; - gpr_log(GPR_INFO, __FUNCTION__); + gpr_log(GPR_INFO, "test_simple_context"); GPR_ASSERT(ctx != NULL); GPR_ASSERT(ctx->property_count == 3); ctx->properties[0] = grpc_auth_property_init_from_cstring("name", "chapi"); @@ -95,7 +95,7 @@ static void test_chained_context(void) { grpc_auth_property_iterator it; size_t i; - gpr_log(GPR_INFO, __FUNCTION__); + gpr_log(GPR_INFO, "test_chained_context"); grpc_auth_context_unref(chained); chained->properties[0] = grpc_auth_property_init_from_cstring("name", "padapo"); |