From 26d0e3569499275a072d80c811825045e3291aed Mon Sep 17 00:00:00 2001 From: Jonathan Rajotte Date: Fri, 6 Nov 2020 10:16:28 -0500 Subject: [PATCH] Clean-up: sort noinst_PROGRAMS in test/unit/Makefile.am MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jonathan Rajotte Signed-off-by: Jérémie Galarneau Change-Id: I99cb52748495cd7cc364af7ea04ae95a75bb5759 --- tests/unit/Makefile.am | 35 ++++++++++++++++++++++------------- 1 file changed, 22 insertions(+), 13 deletions(-) diff --git a/tests/unit/Makefile.am b/tests/unit/Makefile.am index 498a4a623..97b84b6cf 100644 --- a/tests/unit/Makefile.am +++ b/tests/unit/Makefile.am @@ -42,19 +42,28 @@ LIBRELAYD=$(top_builddir)/src/common/relayd/librelayd.la LIBLTTNG_CTL=$(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la # Define test programs -noinst_PROGRAMS = test_uri test_session test_kernel_data \ - test_utils_parse_size_suffix test_utils_parse_time_suffix \ - test_utils_expand_path test_utils_compat_poll test_utils_compat_pthread \ - test_string_utils test_notification test_directory_handle \ - test_relayd_backward_compat_group_by_session \ - test_fd_tracker test_uuid \ - test_buffer_view \ - test_payload \ - test_unix_socket \ - test_kernel_probe \ - test_condition \ - test_event_expr_to_bytecode \ - test_event_rule +noinst_PROGRAMS = \ + test_buffer_view \ + test_condition \ + test_directory_handle \ + test_event_expr_to_bytecode \ + test_event_rule \ + test_fd_tracker \ + test_kernel_data \ + test_kernel_probe \ + test_notification \ + test_payload \ + test_relayd_backward_compat_group_by_session \ + test_session \ + test_string_utils \ + test_unix_socket \ + test_uri \ + test_utils_compat_poll \ + test_utils_compat_pthread \ + test_utils_expand_path \ + test_utils_parse_size_suffix \ + test_utils_parse_time_suffix \ + test_uuid if HAVE_LIBLTTNG_UST_CTL noinst_PROGRAMS += test_ust_data -- 2.34.1