X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=tests%2Funit%2Ftest_session.c;h=e6d9ec8bcc57c2967936dadd7dfa2489527e034f;hp=94e93cd808f6e1ace74133371da576a52d5ae05c;hb=412d7227e69ec845e44c49082a417f9454d9b55d;hpb=9d16b343fb9e781fc8d8fa3c448a3f382306dd33 diff --git a/tests/unit/test_session.c b/tests/unit/test_session.c index 94e93cd80..e6d9ec8bc 100644 --- a/tests/unit/test_session.c +++ b/tests/unit/test_session.c @@ -6,7 +6,6 @@ */ #include -#include #include #include #include @@ -17,6 +16,7 @@ #include +#include #include #include #include @@ -66,7 +66,7 @@ static char *get_random_string(void) /* * Return 0 if session name is found, else -1 */ -static int find_session_name(char *name) +static int find_session_name(const char *name) { struct ltt_session *iter; @@ -110,7 +110,7 @@ static void empty_session_list(void) /* * Test creation of 1 session */ -static int create_one_session(char *name) +static int create_one_session(const char *name) { int ret; enum lttng_error_code ret_code; @@ -335,7 +335,7 @@ int main(int argc, char **argv) plan_tests(NUM_TESTS); - health_sessiond = health_app_create(NR_HEALTH_SESSIOND_TYPES); + the_health_sessiond = health_app_create(NR_HEALTH_SESSIOND_TYPES); ht_cleanup_thread = launch_ht_cleanup_thread(); assert(ht_cleanup_thread); lttng_thread_put(ht_cleanup_thread);