X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=tests%2Funit%2FMakefile.am;h=8dc4748a4eaf265094cac3c92855a74a9f05a941;hb=efeeaae1cb3adc782fcd9b9908195f6305ee1f00;hp=4ecc7a8c86f411af0bab90f21ae0506067da1d55;hpb=ae0a823f9f7e1d3800479488a58efc2f92f27d89;p=lttng-tools.git diff --git a/tests/unit/Makefile.am b/tests/unit/Makefile.am index 4ecc7a8c8..8dc4748a4 100644 --- a/tests/unit/Makefile.am +++ b/tests/unit/Makefile.am @@ -17,6 +17,7 @@ TESTS = test_kernel_data \ test_utils_compat_poll \ test_string_utils \ test_notification \ + test_event_rule \ test_directory_handle \ test_relayd_backward_compat_group_by_session \ ini_config/test_ini_config \ @@ -24,7 +25,8 @@ TESTS = test_kernel_data \ test_uuid \ test_buffer_view \ test_payload \ - test_unix_socket + test_unix_socket \ + test_kernel_probe LIBTAP=$(top_builddir)/tests/utils/tap/libtap.la @@ -45,7 +47,9 @@ noinst_PROGRAMS = test_uri test_session test_kernel_data \ test_fd_tracker test_uuid \ test_buffer_view \ test_payload \ - test_unix_socket + test_unix_socket \ + test_kernel_probe \ + test_event_rule if HAVE_LIBLTTNG_UST_CTL noinst_PROGRAMS += test_ust_data @@ -65,6 +69,7 @@ SESSIOND_OBJS = $(top_builddir)/src/bin/lttng-sessiond/buffer-registry.$(OBJEXT) $(top_builddir)/src/bin/lttng-sessiond/kernel.$(OBJEXT) \ $(top_builddir)/src/bin/lttng-sessiond/ht-cleanup.$(OBJEXT) \ $(top_builddir)/src/bin/lttng-sessiond/notification-thread.$(OBJEXT) \ + $(top_builddir)/src/bin/lttng-sessiond/action-executor.$(OBJEXT) \ $(top_builddir)/src/bin/lttng-sessiond/lttng-syscall.$(OBJEXT) \ $(top_builddir)/src/bin/lttng-sessiond/channel.$(OBJEXT) \ $(top_builddir)/src/bin/lttng-sessiond/agent.$(OBJEXT) \ @@ -188,6 +193,10 @@ test_string_utils_LDADD = $(LIBTAP) $(LIBCOMMON) $(LIBSTRINGUTILS) $(DL_LIBS) # Notification api test_notification_SOURCES = test_notification.c test_notification_LDADD = $(LIBTAP) $(LIBLTTNG_CTL) $(DL_LIBS) +# +# Event rule api +test_event_rule_SOURCES = test_event_rule.c +test_event_rule_LDADD = $(LIBTAP) $(LIBCOMMON) $(LIBLTTNG_CTL) $(DL_LIBS) # relayd backward compat for groou-by-session utilities test_relayd_backward_compat_group_by_session_SOURCES = test_relayd_backward_compat_group_by_session.c @@ -213,3 +222,7 @@ test_payload_LDADD = $(LIBTAP) $(LIBSESSIOND_COMM) $(LIBCOMMON) # unix socket test test_unix_socket_SOURCES = test_unix_socket.c test_unix_socket_LDADD = $(LIBTAP) $(LIBSESSIOND_COMM) $(LIBCOMMON) + +# Kernel probe location api test +test_kernel_probe_SOURCES = test_kernel_probe.c +test_kernel_probe_LDADD = $(LIBTAP) $(LIBCOMMON) $(LIBLTTNG_CTL) $(DL_LIBS)