sessiond: Implement UST event notifier error counter
[lttng-tools.git] / tests / regression / tools / notification / Makefile.am
CommitLineData
9d16b343
MJ
1# SPDX-License-Identifier: GPL-2.0-only
2
2868dcc9 3AM_CFLAGS += -I$(top_srcdir)/tests/utils
434f8068
JR
4
5LIBTAP=$(top_builddir)/tests/utils/tap/libtap.la
6LIB_LTTNG_CTL = $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la
7
88a5c0a9 8noinst_PROGRAMS = base_client notification rotation
434f8068
JR
9
10if NO_SHARED
11
12CLEANFILES = libpause_consumer.so libpause_consumer.so.debug
4dd7917e
JR
13EXTRA_DIST = \
14 base_client.c \
15 consumer_testpoints.c \
16 notification.c \
17 test_notification_kernel_buffer_usage \
26e2f47b 18 test_notification_kernel_capture \
4dd7917e
JR
19 test_notification_kernel_error \
20 test_notification_kernel_instrumentation \
21 test_notification_kernel_syscall \
22 test_notification_kernel_userspace_probe \
23 test_notification_multi_app \
24 test_notification_ust_buffer_usage \
26e2f47b 25 test_notification_ust_capture \
4dd7917e
JR
26 test_notification_ust_error \
27 test_notification_ust_event_rule_condition_exclusion \
28 util_event_generator.sh
434f8068
JR
29else
30
31# In order to test the health check feature, the helper library
32# must be built as .so to be able to LD_PRELOAD it.
33FORCE_SHARED_LIB_OPTIONS = -module -shared -avoid-version \
34 -rpath $(abs_builddir)
35
36libpause_consumer_la_SOURCES = consumer_testpoints.c
f667fbd7 37libpause_consumer_la_LIBADD = \
c0a66c84 38 $(top_builddir)/src/common/sessiond-comm/libsessiond-comm.la \
f667fbd7
MJ
39 $(top_builddir)/src/common/libcommon.la \
40 $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la \
41 $(DL_LIBS)
434f8068
JR
42libpause_consumer_la_LDFLAGS = $(FORCE_SHARED_LIB_OPTIONS)
43noinst_LTLIBRARIES = libpause_consumer.la
44
45base_client_SOURCES = base_client.c
46base_client_LDADD = $(LIB_LTTNG_CTL)
47
48notification_SOURCES = notification.c
49notification_LDADD = $(LIB_LTTNG_CTL) $(LIBTAP) -lm
50
88a5c0a9
JG
51rotation_SOURCES = rotation.c
52rotation_LDADD = $(LIB_LTTNG_CTL) $(LIBTAP) -lm
53
4dd7917e
JR
54noinst_SCRIPTS = \
55 test_notification_kernel_buffer_usage \
56 test_notification_kernel_error \
57 test_notification_kernel_instrumentation \
58 test_notification_kernel_syscall \
59 test_notification_kernel_userspace_probe \
60 test_notification_multi_app \
61 test_notification_ust_buffer_usage \
62 test_notification_ust_error \
63 test_notification_ust_event_rule_condition_exclusion \
64 test_rotation \
65 util_event_generator.sh
66
67EXTRA_DIST = \
68 test_notification_kernel_buffer_usage \
26e2f47b 69 test_notification_kernel_capture \
4dd7917e
JR
70 test_notification_kernel_error \
71 test_notification_kernel_instrumentation \
72 test_notification_kernel_syscall \
73 test_notification_kernel_userspace_probe \
74 test_notification_multi_app \
75 test_notification_ust_buffer_usage \
26e2f47b 76 test_notification_ust_capture \
4dd7917e
JR
77 test_notification_ust_error \
78 test_notification_ust_event_rule_condition_exclusion \
79 test_rotation \
80 util_event_generator.sh
434f8068
JR
81
82all-local:
83 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
84 for script in $(EXTRA_DIST); do \
85 cp -f $(srcdir)/$$script $(builddir); \
86 done; \
87 fi
88
89clean-local:
90 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
91 for script in $(EXTRA_DIST); do \
92 rm -f $(builddir)/$$script; \
93 done; \
94 fi
95endif
This page took 0.03403 seconds and 4 git commands to generate.