diff options
author | jboeuf <jboeuf@users.noreply.github.com> | 2015-12-10 10:29:49 -0800 |
---|---|---|
committer | jboeuf <jboeuf@users.noreply.github.com> | 2015-12-10 10:29:49 -0800 |
commit | 034513198989ae075112eedeadcdbec8fcfcc8f3 (patch) | |
tree | f684ac8c0e787063ed72e32d04699c805ab4a5bd /test | |
parent | 78b9e88d491f96e513a3e6fed2bf7e4ad294eb2b (diff) | |
parent | 88408c3b730e87b980519a9fbb1c12c926d390b5 (diff) |
Merge pull request #4388 from ctiller/creddy
Fix Windows build
Diffstat (limited to 'test')
-rw-r--r-- | test/core/security/credentials_test.c | 2 |
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; } |