aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorGravatar jboeuf <jboeuf@users.noreply.github.com>2015-12-10 10:29:49 -0800
committerGravatar jboeuf <jboeuf@users.noreply.github.com>2015-12-10 10:29:49 -0800
commit034513198989ae075112eedeadcdbec8fcfcc8f3 (patch)
treef684ac8c0e787063ed72e32d04699c805ab4a5bd /test
parent78b9e88d491f96e513a3e6fed2bf7e4ad294eb2b (diff)
parent88408c3b730e87b980519a9fbb1c12c926d390b5 (diff)
Merge pull request #4388 from ctiller/creddy
Fix Windows build
Diffstat (limited to 'test')
-rw-r--r--test/core/security/credentials_test.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/core/security/credentials_test.c b/test/core/security/credentials_test.c
index d6febf586e..5eb6118057 100644
--- a/test/core/security/credentials_test.c
+++ b/test/core/security/credentials_test.c
@@ -1096,6 +1096,7 @@ static void test_get_well_known_google_credentials_file_path(void) {
int main(int argc, char **argv) {
grpc_test_init(argc, argv);
+ grpc_init();
test_empty_md_store();
test_ref_unref_empty_md_store();
test_add_to_empty_md_store();
@@ -1126,5 +1127,6 @@ int main(int argc, char **argv) {
test_metadata_plugin_success();
test_metadata_plugin_failure();
test_get_well_known_google_credentials_file_path();
+ grpc_shutdown();
return 0;
}