Tests: notification: make testcases manage the test app
authorFrancis Deslauriers <francis.deslauriers@efficios.com>
Tue, 11 Feb 2020 03:37:03 +0000 (22:37 -0500)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Thu, 4 Mar 2021 16:59:19 +0000 (11:59 -0500)
Each testcase should resume the application if needed. They must ensure
they suspend it before returning.

Signed-off-by: Francis Deslauriers <francis.deslauriers@efficios.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
Change-Id: I5d4f5f43886af676163ab6190b90181bfb575170
Depends-on: lttng-ust: I5a800fc92e588c2a6a0e26282b0ad5f31c044479

tests/regression/tools/notification/notification.c

index aa0181b6e8818abe1f7bc73a86b8845f20b3fdb9..97a056b6ab94b49a694c81dbecae4a1b28e9426f 100644 (file)
@@ -621,6 +621,8 @@ void test_notification_channel(const char *session_name,
        ok(nc_status == LTTNG_NOTIFICATION_CHANNEL_STATUS_ALREADY_SUBSCRIBED,
                        "Subscribe to a condition for which subscription was already done");
 
+       resume_application();
+
        /* Wait for notification to happen */
        stop_consumer(argv);
        lttng_start_tracing(session_name);
@@ -721,8 +723,9 @@ void test_notification_channel(const char *session_name,
        lttng_notification_destroy(notification);
        notification = NULL;
 
-       /* Resume consumer to allow event consumption */
        suspend_application();
+
+       /* Resume consumer to allow event consumption */
        lttng_stop_tracing_no_wait(session_name);
        resume_consumer(argv);
        wait_data_pending(session_name);
@@ -783,6 +786,12 @@ int main(int argc, const char *argv[])
                goto error;
        }
 
+       /*
+        * Test cases are responsible for resuming the app when needed and
+        * making sure it's suspended when returning.
+        */
+       suspend_application();
+
        diag("Test trigger for domain %s with buffer_usage_low condition", domain_type_string);
        test_triggers_buffer_usage_condition(session_name, channel_name, domain_type, LTTNG_CONDITION_TYPE_BUFFER_USAGE_LOW);
        diag("Test trigger for domain %s with buffer_usage_high condition", domain_type_string);
This page took 0.025967 seconds and 4 git commands to generate.