Mi: mi backend + mi for command version
[lttng-tools.git] / tests / unit / test_ust_data.c
index 52b93e9f6b87013bda56f56c34e1d7f65cfabc1c..dd00089266ad7770ce4c64e18b1340439f167c9b 100644 (file)
 /* Number of TAP tests in this file */
 #define NUM_TESTS 10
 
-/* For lttngerr.h */
+/* For error.h */
 int lttng_opt_quiet = 1;
 int lttng_opt_verbose;
+int lttng_opt_mi;
 
 int ust_consumerd32_fd;
 int ust_consumerd64_fd;
@@ -82,7 +83,7 @@ static void test_create_one_ust_session(void)
        ok(usess != NULL, "Create UST session");
 
        ok(usess->id == 42 &&
-          usess->start_trace == 0 &&
+          usess->active == 0 &&
           usess->domain_global.channels != NULL &&
           usess->uid == 0 &&
           usess->gid == 0,
@@ -124,7 +125,7 @@ static void test_create_ust_event(void)
        ev.type = LTTNG_EVENT_TRACEPOINT;
        ev.loglevel_type = LTTNG_EVENT_LOGLEVEL_ALL;
 
-       event = trace_ust_create_event(&ev, NULL, NULL);
+       event = trace_ust_create_event(&ev, NULL, NULL, NULL);
 
        ok(event != NULL, "Create UST event");
 
@@ -159,7 +160,7 @@ static void test_create_ust_event_exclusion(void)
        exclusion->count = 1;
        strncpy((char *)(exclusion->names), get_random_string(), LTTNG_SYMBOL_NAME_LEN);
 
-       event = trace_ust_create_event(&ev, NULL, exclusion);
+       event = trace_ust_create_event(&ev, NULL, NULL, exclusion);
 
        ok(event != NULL, "Create UST event with exclusion");
 
@@ -172,7 +173,6 @@ static void test_create_ust_event_exclusion(void)
           event->attr.name[LTTNG_UST_SYM_NAME_LEN - 1] == '\0',
           "Validate UST event and exclusion");
 
-       free(exclusion);
        trace_ust_destroy_event(event);
 }
 
This page took 0.023577 seconds and 4 git commands to generate.