Fix: tests: fix unused-but-set warning in test_fd_tracker.c
[lttng-tools.git] / tests / unit / test_session.c
index 94e93cd808f6e1ace74133371da576a52d5ae05c..4fc23791e0737f46b45878aa17e8471f2b0d80df 100644 (file)
@@ -5,8 +5,6 @@
  *
  */
 
-#include <assert.h>
-#include <errno.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
@@ -17,6 +15,7 @@
 
 #include <tap/tap.h>
 
+#include <common/compat/errno.h>
 #include <bin/lttng-sessiond/session.h>
 #include <bin/lttng-sessiond/ust-app.h>
 #include <bin/lttng-sessiond/ht-cleanup.h>
 
 static struct ltt_session_list *session_list;
 
-/* For error.h */
-int lttng_opt_quiet = 1;
-int lttng_opt_verbose = 0;
-int lttng_opt_mi;
-
 static const char alphanum[] =
        "0123456789"
        "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
@@ -66,7 +60,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;
 
@@ -104,13 +98,13 @@ static void empty_session_list(void)
        session_unlock_list();
 
        /* Session list must be 0 */
-       assert(!session_list_count());
+       LTTNG_ASSERT(!session_list_count());
 }
 
 /*
  * 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;
@@ -314,7 +308,7 @@ static void test_large_session_number(void)
        session_lock_list();
        for (i = 0; i < MAX_SESSIONS; i++) {
                cds_list_for_each_entry_safe(iter, tmp, &session_list->head, list) {
-                       assert(session_get(iter));
+                       LTTNG_ASSERT(session_get(iter));
                        ret = destroy_one_session(iter);
                        if (ret < 0) {
                                diag("session %d destroy failed", i);
@@ -335,9 +329,9 @@ 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_ASSERT(ht_cleanup_thread);
        lttng_thread_put(ht_cleanup_thread);
 
        diag("Sessions unit tests");
This page took 0.024405 seconds and 4 git commands to generate.