diff options
author | Craig Tiller <ctiller@google.com> | 2016-10-26 21:31:29 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-10-26 21:31:29 -0700 |
commit | 8abc796ed796d1dc3489446bba66ec4a7c360809 (patch) | |
tree | 185d763e6569d3aa30e4aba5c7929ffca5220b1a /test/core/iomgr | |
parent | 3d357d901c5228cf8989aed8949b20d32baad77b (diff) |
Review feedback
Diffstat (limited to 'test/core/iomgr')
-rw-r--r-- | test/core/iomgr/resource_quota_test.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/test/core/iomgr/resource_quota_test.c b/test/core/iomgr/resource_quota_test.c index 5e2f9f8359..34dee1aee1 100644 --- a/test/core/iomgr/resource_quota_test.c +++ b/test/core/iomgr/resource_quota_test.c @@ -553,9 +553,13 @@ static void test_resource_user_stays_allocated_until_memory_released(void) { static void test_resource_user_stays_allocated_and_reclaimers_unrun_until_memory_released( void) { - gpr_log(GPR_INFO, "** test_pools_merged_on_resource_user_deletion **"); - grpc_resource_quota *q = - grpc_resource_quota_create("test_pools_merged_on_resource_user_deletion"); + gpr_log(GPR_INFO, + "** " + "test_resource_user_stays_allocated_and_reclaimers_unrun_until_" + "memory_released **"); + grpc_resource_quota *q = grpc_resource_quota_create( + "test_resource_user_stays_allocated_and_reclaimers_unrun_until_memory_" + "released"); grpc_resource_quota_resize(q, 1024); for (int i = 0; i < 10; i++) { grpc_resource_user usr; |