summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPavel Březina <pbrezina@redhat.com>2014-02-18 13:34:32 +0100
committerJakub Hrozek <jhrozek@redhat.com>2014-06-03 11:28:05 +0200
commit080edc7074587e778989d4b5ffad1d8cff768b09 (patch)
tree28d6582bda499beec2e54c01ca4d07155acd3318
parentc4a85f65db3713bb5b9ef12b0cebaddace84a8e8 (diff)
downloadsssd-080edc7074587e778989d4b5ffad1d8cff768b09.tar.gz
sssd-080edc7074587e778989d4b5ffad1d8cff768b09.tar.xz
sssd-080edc7074587e778989d4b5ffad1d8cff768b09.zip
tests: add confdb_path to sss_test_ctx
Reviewed-by: Jakub Hrozek <jhrozek@redhat.com>
-rw-r--r--src/tests/common.h1
-rw-r--r--src/tests/common_dom.c8
2 files changed, 5 insertions, 4 deletions
diff --git a/src/tests/common.h b/src/tests/common.h
index ba3b3a749..7cdecb92a 100644
--- a/src/tests/common.h
+++ b/src/tests/common.h
@@ -62,6 +62,7 @@ struct sss_test_ctx {
struct confdb_ctx *confdb;
struct tevent_context *ev;
struct sss_domain_info *dom;
+ char *confdb_path;
bool done;
int error;
diff --git a/src/tests/common_dom.c b/src/tests/common_dom.c
index c0b44456c..42bf358a3 100644
--- a/src/tests/common_dom.c
+++ b/src/tests/common_dom.c
@@ -35,7 +35,6 @@ create_dom_test_ctx(TALLOC_CTX *mem_ctx,
struct sss_test_conf_param *params)
{
struct sss_test_ctx *test_ctx;
- char *conf_db;
size_t i;
const char *val[2];
val[1] = NULL;
@@ -48,14 +47,15 @@ create_dom_test_ctx(TALLOC_CTX *mem_ctx,
goto fail;
}
- conf_db = talloc_asprintf(test_ctx, "%s/%s", tests_path, confdb_path);
- if (conf_db == NULL) {
+ test_ctx->confdb_path = talloc_asprintf(test_ctx, "%s/%s",
+ tests_path, confdb_path);
+ if (test_ctx->confdb_path == NULL) {
DEBUG(SSSDBG_CRIT_FAILURE, "talloc_asprintf failed\n");
goto fail;
}
/* Connect to the conf db */
- ret = confdb_init(test_ctx, &test_ctx->confdb, conf_db);
+ ret = confdb_init(test_ctx, &test_ctx->confdb, test_ctx->confdb_path);
if (ret != EOK) {
DEBUG(SSSDBG_CRIT_FAILURE, "confdb_init failed: %d\n", ret);
goto fail;