tests: test removing a destruction listener from a destruction listener
[babeltrace.git] / tests / lib / Makefile.am
1 SUBDIRS =
2
3 AM_CPPFLAGS += -I$(top_srcdir)/tests/utils
4
5 COMMON_TEST_LDADD = \
6 $(top_builddir)/tests/utils/tap/libtap.la \
7 $(top_builddir)/tests/utils/libtestcommon.la \
8 $(top_builddir)/src/common/libbabeltrace2-common.la \
9 $(top_builddir)/src/logging/libbabeltrace2-logging.la
10
11 test_bt_values_LDADD = $(COMMON_TEST_LDADD) \
12 $(top_builddir)/src/lib/libbabeltrace2.la
13
14 test_bt_uuid_LDADD = $(COMMON_TEST_LDADD)
15
16 test_trace_ir_ref_LDADD = $(COMMON_TEST_LDADD) \
17 $(top_builddir)/src/lib/libbabeltrace2.la \
18 $(top_builddir)/src/ctf-writer/libbabeltrace2-ctf-writer.la
19
20 test_graph_topo_LDADD = $(COMMON_TEST_LDADD) \
21 $(top_builddir)/src/lib/libbabeltrace2.la
22
23 test_simple_sink_LDADD = $(COMMON_TEST_LDADD) \
24 $(top_builddir)/src/lib/libbabeltrace2.la
25
26 test_remove_destruction_listener_in_destruction_listener_LDADD = \
27 $(COMMON_TEST_LDADD) \
28 $(top_builddir)/src/lib/libbabeltrace2.la
29
30 noinst_PROGRAMS = \
31 test_bt_uuid \
32 test_bt_values \
33 test_graph_topo \
34 test_remove_destruction_listener_in_destruction_listener \
35 test_simple_sink \
36 test_trace_ir_ref
37
38 test_bt_values_SOURCES = test_bt_values.c
39 test_simple_sink_SOURCES = test_simple_sink.c
40 test_bt_uuid_SOURCES = test_bt_uuid.c
41 test_trace_ir_ref_SOURCES = test_trace_ir_ref.c
42 test_graph_topo_SOURCES = test_graph_topo.c
43 test_remove_destruction_listener_in_destruction_listener_SOURCES = \
44 test_remove_destruction_listener_in_destruction_listener.c
45
46 if !ENABLE_BUILT_IN_PLUGINS
47 noinst_PROGRAMS += plugin
48 plugin_LDADD = $(COMMON_TEST_LDADD) \
49 $(top_builddir)/src/lib/libbabeltrace2.la
50 plugin_SOURCES = plugin.c
51 SUBDIRS += test-plugin-plugins
52 endif
53
54 dist_check_SCRIPTS = test_plugin
This page took 0.030067 seconds and 4 git commands to generate.