aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/slice/slice_string_helpers_test.cc
diff options
context:
space:
mode:
authorGravatar Yash Tibrewal <yashkt@google.com>2017-12-08 09:30:40 -0800
committerGravatar GitHub <noreply@github.com>2017-12-08 09:30:40 -0800
commit94e676e10f8c739289924b8458a246699e3623ce (patch)
treee223fa15a4c6e22582771a456bfb58d844c96485 /test/core/slice/slice_string_helpers_test.cc
parenta25697095b39ce4014457a64c2917c5abadbe998 (diff)
parent9e5dc246eebdc3b7c7dc4d75f35d3697bee90d9a (diff)
Merge pull request #13659 from grpc/revert-13658-revert-13058-execctx
Revert "Revert "All instances of exec_ctx being passed around in src/core removed""
Diffstat (limited to 'test/core/slice/slice_string_helpers_test.cc')
-rw-r--r--test/core/slice/slice_string_helpers_test.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/core/slice/slice_string_helpers_test.cc b/test/core/slice/slice_string_helpers_test.cc
index 260f8c80d5..f1d470461a 100644
--- a/test/core/slice/slice_string_helpers_test.cc
+++ b/test/core/slice/slice_string_helpers_test.cc
@@ -23,6 +23,7 @@
#include <stdlib.h>
#include <string.h>
+#include <grpc/grpc.h>
#include <grpc/support/alloc.h>
#include <grpc/support/log.h>
#include <grpc/support/string_util.h>
@@ -130,7 +131,9 @@ static void test_strsplit(void) {
int main(int argc, char** argv) {
grpc_test_init(argc, argv);
+ grpc_init();
test_dump_slice();
test_strsplit();
+ grpc_shutdown();
return 0;
}