From 41dcd4bd17708779b45982d9547215924f2e5fd5 Mon Sep 17 00:00:00 2001 From: rsgowman Date: Wed, 21 Feb 2018 17:51:44 -0500 Subject: Fix trivial mem leak in the test suite (#828) Reduces noise while running valgrind so that I can see the leaks that I'm introducing. :/ --- Firestore/core/test/firebase/firestore/remote/datastore_test.cc | 1 + 1 file changed, 1 insertion(+) (limited to 'Firestore/core/test') diff --git a/Firestore/core/test/firebase/firestore/remote/datastore_test.cc b/Firestore/core/test/firebase/firestore/remote/datastore_test.cc index 46a19cc..42a9a8c 100644 --- a/Firestore/core/test/firebase/firestore/remote/datastore_test.cc +++ b/Firestore/core/test/firebase/firestore/remote/datastore_test.cc @@ -25,4 +25,5 @@ TEST(Datastore, CanLinkToGrpc) { // libraries required for gRPC to work are actually linked correctly into the // test. grpc_init(); + grpc_shutdown(); } -- cgit v1.2.3