X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=tests%2Fregression%2Ftools%2Fnotification%2FMakefile.am;h=b9e4b8ac29d019a7456bb643982d95b038914de3;hb=a5c2d2a71919b8d1542b62f6d32579125cc2c8f8;hp=84acf3d3dd1622c5e889af564e937c72f8fdb49a;hpb=26e2f47b20625f4d31a8a3632720bb312fd98c27;p=lttng-tools.git diff --git a/tests/regression/tools/notification/Makefile.am b/tests/regression/tools/notification/Makefile.am index 84acf3d3d..b9e4b8ac2 100644 --- a/tests/regression/tools/notification/Makefile.am +++ b/tests/regression/tools/notification/Makefile.am @@ -5,14 +5,15 @@ AM_CFLAGS += -I$(top_srcdir)/tests/utils LIBTAP=$(top_builddir)/tests/utils/tap/libtap.la LIB_LTTNG_CTL = $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la -noinst_PROGRAMS = base_client notification rotation +noinst_PROGRAMS = base_client notification rotation default_pipe_size_getter if NO_SHARED -CLEANFILES = libpause_consumer.so libpause_consumer.so.debug +CLEANFILES = libpause_consumer.so libpause_consumer.so.debug libpause_sessiond.so libpause_sessiond.so.debug EXTRA_DIST = \ base_client.c \ consumer_testpoints.c \ + sessiond_testpoints.c \ notification.c \ test_notification_kernel_buffer_usage \ test_notification_kernel_capture \ @@ -21,6 +22,7 @@ EXTRA_DIST = \ test_notification_kernel_syscall \ test_notification_kernel_userspace_probe \ test_notification_multi_app \ + test_notification_notifier_discarded_count \ test_notification_ust_buffer_usage \ test_notification_ust_capture \ test_notification_ust_error \ @@ -40,17 +42,29 @@ libpause_consumer_la_LIBADD = \ $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la \ $(DL_LIBS) libpause_consumer_la_LDFLAGS = $(FORCE_SHARED_LIB_OPTIONS) -noinst_LTLIBRARIES = libpause_consumer.la + +libpause_sessiond_la_SOURCES = sessiond_testpoints.c +libpause_sessiond_la_LIBADD = \ + $(top_builddir)/src/common/libcommon.la \ + $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la \ + $(DL_LIBS) +libpause_sessiond_la_LDFLAGS = $(FORCE_SHARED_LIB_OPTIONS) +noinst_LTLIBRARIES = libpause_sessiond.la libpause_consumer.la base_client_SOURCES = base_client.c base_client_LDADD = $(LIB_LTTNG_CTL) notification_SOURCES = notification.c +# Tests the deprecated lttng_register_trigger() interface +notification_CFLAGS = -Wno-deprecated-declarations $(AM_CFLAGS) notification_LDADD = $(LIB_LTTNG_CTL) $(LIBTAP) -lm rotation_SOURCES = rotation.c rotation_LDADD = $(LIB_LTTNG_CTL) $(LIBTAP) -lm +default_pipe_size_getter_SOURCES = default_pipe_size_getter.c +default_pipe_size_getter_LDADD = $(top_builddir)/src/common/libcommon.la + noinst_SCRIPTS = \ test_notification_kernel_buffer_usage \ test_notification_kernel_error \ @@ -58,6 +72,7 @@ noinst_SCRIPTS = \ test_notification_kernel_syscall \ test_notification_kernel_userspace_probe \ test_notification_multi_app \ + test_notification_notifier_discarded_count \ test_notification_ust_buffer_usage \ test_notification_ust_error \ test_notification_ust_event_rule_condition_exclusion \ @@ -72,6 +87,7 @@ EXTRA_DIST = \ test_notification_kernel_syscall \ test_notification_kernel_userspace_probe \ test_notification_multi_app \ + test_notification_notifier_discarded_count \ test_notification_ust_buffer_usage \ test_notification_ust_capture \ test_notification_ust_error \