From: Martin Willi Date: Mon, 20 Dec 2010 14:49:00 +0000 (+0100) Subject: Merge test config into suite config, instead of having two distinct configs X-Git-Tag: 4.5.1~170 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=98ef286580bbd27bfd62b857098ee8c5d8acb2dc;p=thirdparty%2Fstrongswan.git Merge test config into suite config, instead of having two distinct configs --- diff --git a/src/conftest/conftest.c b/src/conftest/conftest.c index f06ff152e9..3ba2313e50 100644 --- a/src/conftest/conftest.c +++ b/src/conftest/conftest.c @@ -77,12 +77,9 @@ static bool load_configs(char *suite_file, char *test_file) test_file, strerror(errno)); return FALSE; } - conftest->suite = settings_create(suite_file); - conftest->test = settings_create(test_file); - suite_file = dirname(suite_file); - test_file = dirname(test_file); - conftest->suite_dir = strdup(suite_file); - conftest->test_dir = strdup(test_file); + conftest->test = settings_create(suite_file); + conftest->test->load_files(conftest->test, test_file); + conftest->suite_dir = strdup(dirname(suite_file)); return TRUE; } @@ -274,7 +271,6 @@ static void cleanup() { hook_t *hook; - DESTROY_IF(conftest->suite); DESTROY_IF(conftest->test); lib->credmgr->remove_set(lib->credmgr, &conftest->creds->set); conftest->creds->destroy(conftest->creds); @@ -296,7 +292,6 @@ static void cleanup() conftest->config->destroy(conftest->config); } free(conftest->suite_dir); - free(conftest->test_dir); free(conftest); libcharon_deinit(); libhydra_deinit(); @@ -393,13 +388,11 @@ int main(int argc, char *argv[]) { return 1; } - if (!load_certs(conftest->suite, conftest->suite_dir) || - !load_certs(conftest->test, conftest->test_dir)) + if (!load_certs(conftest->test, conftest->suite_dir)) { return 1; } - if (!load_keys(conftest->suite, conftest->suite_dir) || - !load_keys(conftest->test, conftest->test_dir)) + if (!load_keys(conftest->test, conftest->suite_dir)) { return 1; } @@ -409,7 +402,6 @@ int main(int argc, char *argv[]) } charon->backends->add_backend(charon->backends, &conftest->config->backend); conftest->config->load(conftest->config, conftest->test); - conftest->config->load(conftest->config, conftest->suite); conftest->actions = actions_create(); /* set up thread specific handlers */ diff --git a/src/conftest/conftest.h b/src/conftest/conftest.h index 2d32e6ce31..2caf9b3ceb 100644 --- a/src/conftest/conftest.h +++ b/src/conftest/conftest.h @@ -36,12 +36,7 @@ typedef struct conftest_t conftest_t; struct conftest_t { /** - * Global testsuite configuration - */ - settings_t *suite; - - /** - * Test specific configuration + * Merged suite/test configuration */ settings_t *test; @@ -50,11 +45,6 @@ struct conftest_t { */ char *suite_dir; - /** - * Directory containing test files - */ - char *test_dir; - /** * Credentials loaded from configuration */