Fix: bt_plugin_so_shared_lib_handle_destroy(): use `#ifdef`, not `#ifndef`
[babeltrace.git] / tests / Makefile.am
... / ...
CommitLineData
1SUBDIRS = utils lib ctf-writer plugins
2
3# Directories added to EXTRA_DIST will be recursively copied to the distribution.
4EXTRA_DIST = $(srcdir)/data \
5 bindings/python/bt2/.coveragerc
6
7dist_check_SCRIPTS = \
8 bindings/python/bt2/test_clock_class_priority_map.py \
9 bindings/python/bt2/test_clock_class.py \
10 bindings/python/bt2/test_component_class.py \
11 bindings/python/bt2/test_component.py \
12 bindings/python/bt2/test_connection.py \
13 bindings/python/bt2/test_ctf_writer_clock.py \
14 bindings/python/bt2/test_event_class.py \
15 bindings/python/bt2/test_event.py \
16 bindings/python/bt2/test_field_class.py \
17 bindings/python/bt2/test_field.py \
18 bindings/python/bt2/test_graph.py \
19 bindings/python/bt2/test_message_iterator.py \
20 bindings/python/bt2/test_message.py \
21 bindings/python/bt2/test_packet.py \
22 bindings/python/bt2/test_plugin.py \
23 bindings/python/bt2/test_port.py \
24 bindings/python/bt2/test_python_bt2 \
25 bindings/python/bt2/test_query_executor.py \
26 bindings/python/bt2/test_stream_class.py \
27 bindings/python/bt2/test_stream.py \
28 bindings/python/bt2/test_trace_collection_message_iterator.py \
29 bindings/python/bt2/test_trace.py \
30 bindings/python/bt2/test_value.py \
31 bindings/python/bt2/utils.py \
32 cli/test_convert_args \
33 cli/test_intersection \
34 cli/test_output_ctf_metadata \
35 cli/test_packet_seq_num \
36 cli/test_trace_copy \
37 cli/test_trace_read \
38 cli/test_trimmer \
39 python-plugin-provider/bt_plugin_test_python_plugin_provider.py \
40 python-plugin-provider/test_python_plugin_provider \
41 python-plugin-provider/test_python_plugin_provider.py
42
43TESTS_BINDINGS =
44
45if ENABLE_PYTHON_BINDINGS
46TESTS_BINDINGS += bindings/python/bt2/test_python_bt2
47endif
48
49TESTS_CLI = \
50 cli/test_trace_read \
51 cli/test_packet_seq_num \
52 cli/test_convert_args \
53 cli/test_intersection \
54 cli/test_trace_copy \
55 cli/test_trimmer
56
57TESTS_LIB = \
58 lib/test_bitfield \
59 lib/test_bt_values \
60 lib/test_bt_uuid \
61 lib/test_graph_topo \
62 lib/test_trace_ir_ref
63
64TESTS_CTF_WRITER = \
65 ctf-writer/test_ctf_writer
66
67if !ENABLE_BUILT_IN_PLUGINS
68TESTS_LIB += lib/test_plugin
69endif
70
71TESTS_PLUGINS = \
72 plugins/src.ctf.fs/succeed/test_succeed \
73 plugins/sink.ctf.fs/succeed/test_succeed
74
75if !ENABLE_BUILT_IN_PLUGINS
76if ENABLE_PYTHON_BINDINGS
77TESTS_PLUGINS += plugins/src.ctf.fs/query/test_query
78
79if ENABLE_DEBUG_INFO
80TESTS_PLUGINS += plugins/flt.lttng-utils.debug-info/test_lttng_utils_debug_info
81endif
82endif
83endif
84
85if ENABLE_DEBUG_INFO
86TESTS_PLUGINS += \
87 plugins/flt.lttng-utils.debug-info/test_dwarf_i386-linux-gnu \
88 plugins/flt.lttng-utils.debug-info/test_dwarf_powerpc-linux-gnu \
89 plugins/flt.lttng-utils.debug-info/test_dwarf_powerpc64le-linux-gnu \
90 plugins/flt.lttng-utils.debug-info/test_dwarf_x86_64-linux-gnu \
91 plugins/flt.lttng-utils.debug-info/test_bin_info_i386-linux-gnu \
92 plugins/flt.lttng-utils.debug-info/test_bin_info_powerpc-linux-gnu \
93 plugins/flt.lttng-utils.debug-info/test_bin_info_powerpc64le-linux-gnu \
94 plugins/flt.lttng-utils.debug-info/test_bin_info_x86_64-linux-gnu
95endif
96
97if ENABLE_PYTHON_PLUGINS
98if ENABLE_PYTHON_BINDINGS
99TESTS_PLUGINS += plugins/flt.utils.trimmer/test_trimming_wrapper
100endif
101endif
102
103TESTS_PYTHON_PLUGIN_PROVIDER =
104
105if ENABLE_PYTHON_PLUGINS
106TESTS_PYTHON_PLUGIN_PROVIDER += python-plugin-provider/test_python_plugin_provider
107endif
108
109LOG_DRIVER_FLAGS = --merge --comments
110LOG_DRIVER = env AM_TAP_AWK='$(AWK)' \
111 BT_TESTS_SRCDIR='$(abs_top_srcdir)/tests' \
112 BT_TESTS_BUILDDIR='$(abs_top_builddir)/tests' \
113 BT_TESTS_AWK_BIN="$(AWK)" \
114 BT_TESTS_GREP_BIN="$(GREP)" \
115 BT_TESTS_PYTHON_BIN="$(PYTHON)" \
116 BT_TESTS_SED_BIN="$(SED)" \
117 $(SHELL) $(top_srcdir)/config/tap-driver.sh
118
119TESTS = $(TESTS_BINDINGS) $(TESTS_CLI) $(TESTS_CTF_WRITER) $(TESTS_LIB) \
120 $(TESTS_PLUGINS) $(TESTS_PYTHON_PLUGIN_PROVIDER)
121
122define check_target
123check-$(1):
124 $(MAKE) $(AM_MAKEFLAGS) TESTS="$2" check
125endef
126
127$(eval $(call check_target,bindings,$(TESTS_BINDINGS)))
128$(eval $(call check_target,cli,$(TESTS_CLI)))
129$(eval $(call check_target,ctf-writer,$(TESTS_CTF_WRITER)))
130$(eval $(call check_target,lib,$(TESTS_LIB)))
131$(eval $(call check_target,plugins,$(TESTS_PLUGINS)))
132$(eval $(call check_target,python-plugin-provider,$(TESTS_PYTHON_PLUGIN_PROVIDER)))
This page took 0.027196 seconds and 4 git commands to generate.