action list: missing renames from previous name "group"
[lttng-tools.git] / tests / regression / tools / trigger / utils / notification-client.c
index 7e92cba6156f147845a53f2fdb43839352bc7055..3d8aec46ddbd8b7feb5cf90dbc75a43298384bfc 100644 (file)
@@ -36,22 +36,22 @@ static struct option long_options[] =
        {0, 0, 0, 0}
 };
 
-static bool action_group_contains_notify(
-               const struct lttng_action *action_group)
+static bool action_list_contains_notify(
+               const struct lttng_action *action_list)
 {
        unsigned int i, count;
        enum lttng_action_status status =
-                       lttng_action_group_get_count(action_group, &count);
+                       lttng_action_list_get_count(action_list, &count);
 
        if (status != LTTNG_ACTION_STATUS_OK) {
-               printf("Failed to get action count from action group\n");
+               printf("Failed to get action count from action list\n");
                exit(1);
        }
 
        for (i = 0; i < count; i++) {
                const struct lttng_action *action =
-                               lttng_action_group_get_at_index(
-                                               action_group, i);
+                               lttng_action_list_get_at_index(
+                                               action_list, i);
                const enum lttng_action_type action_type =
                                lttng_action_get_type(action);
 
@@ -62,6 +62,7 @@ static bool action_group_contains_notify(
        return false;
 }
 
+/* Only expects named triggers. */
 static bool is_trigger_name(const char *expected_trigger_name,
                struct lttng_notification *notification)
 {
@@ -180,8 +181,8 @@ int main(int argc, char **argv)
                                continue;
                        }
                }
-               if (!((action_type == LTTNG_ACTION_TYPE_GROUP &&
-                                     action_group_contains_notify(action)) ||
+               if (!((action_type == LTTNG_ACTION_TYPE_LIST &&
+                                     action_list_contains_notify(action)) ||
                                    action_type == LTTNG_ACTION_TYPE_NOTIFY)) {
                        /* "The action of trigger is not notify, skipping. */
                        continue;
This page took 0.024519 seconds and 4 git commands to generate.