We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1949fc9 commit 5c8ccb4Copy full SHA for 5c8ccb4
test/helper.c
@@ -113,7 +113,7 @@ static request_rec *oidc_test_request_init(apr_pool_t *pool) {
113
cfg->cache.shm_entry_size_max = 16384 + 255 + 17;
114
cfg->cache.encrypt = 1;
115
if (cfg->cache.impl->post_config(request->server) != OK) {
116
- printf("cfg->cache.impl->post_config failed!\n");
+ fprintf(stderr, "cfg->cache.impl->post_config failed!\n");
117
exit(-1);
118
}
119
@@ -129,6 +129,7 @@ void oidc_test_setup(void) {
129
130
void oidc_test_teardown(void) {
131
EVP_cleanup();
132
+ oidc_test_cfg_get()->cache.impl->destroy(request->server);
133
apr_pool_destroy(pool);
134
apr_terminate();
135
0 commit comments