Tests: Add add-trigger CLI tests
[lttng-tools.git] / tests / unit / test_notification.c
index 07aee734a2f56fd6d1e7d6a192bdb41e594f65e2..5e50eaa4c7e831f754c6f6ceac12c442f2497657 100644 (file)
@@ -5,23 +5,8 @@
  *
  * Copyright (C) 2017 Jonathan Rajotte <jonathan.rajotte-julien@efficios.com>
  *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
+ * SPDX-License-Identifier: MIT
  *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
  */
 
 #include <assert.h>
@@ -47,7 +32,8 @@ int lttng_opt_mi;
 
 #define NUM_TESTS 182
 
-void test_condition_buffer_usage(struct lttng_condition *buffer_usage_condition)
+static void test_condition_buffer_usage(
+               struct lttng_condition *buffer_usage_condition)
 {
        enum lttng_condition_status status = LTTNG_CONDITION_STATUS_OK;
        const char *session_name = NULL;
@@ -261,8 +247,7 @@ void test_condition_buffer_usage(struct lttng_condition *buffer_usage_condition)
        ok(domain_type == LTTNG_DOMAIN_UST, "Domain type is LTTNG_DOMAIN_UST");
 }
 
-
-void test_condition_buffer_usage_low(void)
+static void test_condition_buffer_usage_low(void)
 {
        struct lttng_condition *buffer_usage_low = NULL;
 
@@ -277,7 +262,7 @@ void test_condition_buffer_usage_low(void)
        lttng_condition_destroy(buffer_usage_low);
 }
 
-void test_condition_buffer_usage_high(void)
+static void test_condition_buffer_usage_high(void)
 {
        struct lttng_condition *buffer_usage_high = NULL;
 
@@ -292,7 +277,7 @@ void test_condition_buffer_usage_high(void)
        lttng_condition_destroy(buffer_usage_high);
 }
 
-void test_action(void)
+static void test_action(void)
 {
        struct lttng_action *notify_action = NULL;
 
@@ -302,7 +287,7 @@ void test_action(void)
        lttng_action_destroy(notify_action);
 }
 
-void test_trigger(void)
+static void test_trigger(void)
 {
        struct lttng_action *notify_action = NULL;
        struct lttng_condition *buffer_usage_high = NULL;
This page took 0.024165 seconds and 4 git commands to generate.