X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=tests%2Funit%2Fini_config%2Fini_config.cpp;h=4cc22119b63e3148881beebfde86a78ecab21df8;hb=HEAD;hp=c2a753edece66593a336529a21a2bde8c0eca677;hpb=3299fd310c0fab63e912004cdd404d586f936f9e;p=lttng-tools.git diff --git a/tests/unit/ini_config/ini_config.cpp b/tests/unit/ini_config/ini_config.cpp index c2a753ede..4cc22119b 100644 --- a/tests/unit/ini_config/ini_config.cpp +++ b/tests/unit/ini_config/ini_config.cpp @@ -5,12 +5,16 @@ * */ -#include -#include -#include -#include +#include +#include +#include + #include +#include +#include + +namespace { struct state { int section_1; int section_2; @@ -19,6 +23,7 @@ struct state { int text_entry; int int_entry; }; +} /* namespace */ int lttng_opt_quiet = 1; int lttng_opt_verbose = 0; @@ -35,8 +40,7 @@ static int entry_handler(const struct config_entry *entry, struct state *state) if (!strcmp(entry->section, "section1")) { state->section_1 = 1; - if (!strcmp(entry->name, "section1_entry") && - !strcmp(entry->value, "42")) { + if (!strcmp(entry->name, "section1_entry") && !strcmp(entry->value, "42")) { state->int_entry = 1; } } @@ -48,7 +52,7 @@ static int entry_handler(const struct config_entry *entry, struct state *state) if (!strcmp(entry->section, "section 3")) { state->section_3 = 1; if (!strcmp(entry->name, "name with a space") && - !strcmp(entry->value, "another value")) { + !strcmp(entry->value, "another value")) { state->text_entry = 1; } } @@ -62,7 +66,7 @@ end: int main(int argc, char **argv) { - char *path = NULL; + char *path = nullptr; int ret; struct state state = {}; @@ -73,7 +77,7 @@ int main(int argc, char **argv) if (strlen(argv[1]) >= LTTNG_PATH_MAX) { diag("The provided path exceeds the maximal permitted length of %i bytes", - LTTNG_PATH_MAX); + LTTNG_PATH_MAX); goto end; } path = utils_expand_path(argv[1]); @@ -82,27 +86,26 @@ int main(int argc, char **argv) } plan_no_plan(); - ret = config_get_section_entries(path, NULL, - (config_entry_handler_cb)entry_handler, &state); + ret = config_get_section_entries( + path, nullptr, (config_entry_handler_cb) entry_handler, &state); ok(ret == 0, "Successfully opened a config file, registered to all sections"); - ok(state.section_1 && state.section_2 && state.section_3 && - state.section_global, "Processed entries from each sections"); + ok(state.section_1 && state.section_2 && state.section_3 && state.section_global, + "Processed entries from each sections"); ok(state.text_entry, "Text value parsed correctly"); memset(&state, 0, sizeof(struct state)); - ret = config_get_section_entries(path, "section1", - (config_entry_handler_cb)entry_handler, &state); + ret = config_get_section_entries( + path, "section1", (config_entry_handler_cb) entry_handler, &state); ok(ret == 0, "Successfully opened a config file, registered to one section"); - ok(state.section_1 && !state.section_2 && !state.section_3 && - !state.section_global, "Processed an entry from section1 only"); + ok(state.section_1 && !state.section_2 && !state.section_3 && !state.section_global, + "Processed an entry from section1 only"); ok(state.int_entry, "Int value parsed correctly"); memset(&state, 0, sizeof(struct state)); - ret = config_get_section_entries(path, "", - (config_entry_handler_cb)entry_handler, &state); + ret = config_get_section_entries(path, "", (config_entry_handler_cb) entry_handler, &state); ok(ret == 0, "Successfully opened a config file, registered to the global section"); - ok(!state.section_1 && !state.section_2 && !state.section_3 && - state.section_global, "Processed an entry from the global section only"); + ok(!state.section_1 && !state.section_2 && !state.section_3 && state.section_global, + "Processed an entry from the global section only"); end: free(path); return exit_status();