From f059a4e006888d99ca7b0ef3f4c2bb40d4e2f784 Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Mon, 25 Nov 2019 16:15:35 -0500 Subject: [PATCH] tests: make functions static in test_notification.c MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Fixes: CC test_notification.o /home/smarchi/src/lttng-tools/tests/unit/test_notification.c:50:6: error: no previous declaration for ‘test_condition_buffer_usage’ [-Werror=missing-declarations] void test_condition_buffer_usage(struct lttng_condition *buffer_usage_condition) ^~~~~~~~~~~~~~~~~~~~~~~~~~~ /home/smarchi/src/lttng-tools/tests/unit/test_notification.c:265:6: error: no previous declaration for ‘test_condition_buffer_usage_low’ [-Werror=missing-declarations] void test_condition_buffer_usage_low(void) ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /home/smarchi/src/lttng-tools/tests/unit/test_notification.c:280:6: error: no previous declaration for ‘test_condition_buffer_usage_high’ [-Werror=missing-declarations] void test_condition_buffer_usage_high(void) ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /home/smarchi/src/lttng-tools/tests/unit/test_notification.c:295:6: error: no previous declaration for ‘test_action’ [-Werror=missing-declarations] void test_action(void) ^~~~~~~~~~~ /home/smarchi/src/lttng-tools/tests/unit/test_notification.c:305:6: error: no previous declaration for ‘test_trigger’ [-Werror=missing-declarations] void test_trigger(void) ^~~~~~~~~~~~ Signed-off-by: Simon Marchi Change-Id: I4df29ec42436798005e740d5b6fb34973ea22350 Signed-off-by: Jérémie Galarneau --- tests/unit/test_notification.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/unit/test_notification.c b/tests/unit/test_notification.c index 07aee734a..a480cb2a9 100644 --- a/tests/unit/test_notification.c +++ b/tests/unit/test_notification.c @@ -47,7 +47,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 +262,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 +277,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 +292,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 +302,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; -- 2.34.1