aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/slice/slice_buffer_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/core/slice/slice_buffer_test.cc')
-rw-r--r--test/core/slice/slice_buffer_test.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/core/slice/slice_buffer_test.cc b/test/core/slice/slice_buffer_test.cc
index 338e8079dc..e59986730b 100644
--- a/test/core/slice/slice_buffer_test.cc
+++ b/test/core/slice/slice_buffer_test.cc
@@ -16,6 +16,7 @@
*
*/
+#include <grpc/grpc.h>
#include <grpc/slice_buffer.h>
#include <grpc/support/log.h>
#include "test/core/util/test_config.h"
@@ -106,9 +107,11 @@ void test_slice_buffer_move_first() {
int main(int argc, char** argv) {
grpc_test_init(argc, argv);
+ grpc_init();
test_slice_buffer_add();
test_slice_buffer_move_first();
+ grpc_shutdown();
return 0;
}