Commit | Line | Data |
---|---|---|
d0d4e0ed SM |
1 | SUBDIRS = \ |
2 | utils \ | |
3 | lib \ | |
4 | bitfield \ | |
5 | ctf-writer \ | |
6 | plugins \ | |
7 | argpar \ | |
8 | param-validation | |
ac65e355 | 9 | |
6a284733 | 10 | # Directories added to EXTRA_DIST will be recursively copied to the distribution. |
bbff0ab4 | 11 | EXTRA_DIST = $(srcdir)/data \ |
7bb90dd0 | 12 | bindings/python/bt2/.coveragerc |
1b83271b | 13 | |
7bb90dd0 | 14 | dist_check_SCRIPTS = \ |
7bb90dd0 MJ |
15 | bindings/python/bt2/test_clock_class.py \ |
16 | bindings/python/bt2/test_component_class.py \ | |
17 | bindings/python/bt2/test_component.py \ | |
18 | bindings/python/bt2/test_connection.py \ | |
7bb90dd0 MJ |
19 | bindings/python/bt2/test_event_class.py \ |
20 | bindings/python/bt2/test_event.py \ | |
21 | bindings/python/bt2/test_field_class.py \ | |
22 | bindings/python/bt2/test_field.py \ | |
23 | bindings/python/bt2/test_graph.py \ | |
19bb8b5a | 24 | bindings/python/bt2/test_integer_range_set.py \ |
1e920353 | 25 | bindings/python/bt2/test_interrupter.py \ |
7bb90dd0 MJ |
26 | bindings/python/bt2/test_message_iterator.py \ |
27 | bindings/python/bt2/test_message.py \ | |
6c0b3817 | 28 | bindings/python/bt2/test_package.py \ |
7bb90dd0 MJ |
29 | bindings/python/bt2/test_packet.py \ |
30 | bindings/python/bt2/test_plugin.py \ | |
31 | bindings/python/bt2/test_port.py \ | |
644e0364 | 32 | bindings/python/bt2/test_python_bt2 \ |
7bb90dd0 MJ |
33 | bindings/python/bt2/test_query_executor.py \ |
34 | bindings/python/bt2/test_stream_class.py \ | |
35 | bindings/python/bt2/test_stream.py \ | |
36 | bindings/python/bt2/test_trace_collection_message_iterator.py \ | |
37 | bindings/python/bt2/test_trace.py \ | |
38 | bindings/python/bt2/test_value.py \ | |
39 | bindings/python/bt2/utils.py \ | |
595cc8e0 | 40 | cli/convert/test_auto_source_discovery_grouping \ |
3b9d10e2 PP |
41 | cli/convert/test_auto_source_discovery_params \ |
42 | cli/convert/test_auto_source_discovery_log_level \ | |
595cc8e0 | 43 | cli/convert/test_convert_args \ |
4bf5c85f | 44 | cli/test_help \ |
644e0364 MJ |
45 | cli/test_intersection \ |
46 | cli/test_output_ctf_metadata \ | |
005d49d6 | 47 | cli/test_output_path_ctf_non_lttng_trace \ |
644e0364 MJ |
48 | cli/test_packet_seq_num \ |
49 | cli/test_trace_copy \ | |
50 | cli/test_trace_read \ | |
51 | cli/test_trimmer \ | |
54d785fa | 52 | plugins/sink.text.details/succeed/test_succeed \ |
584af91e | 53 | plugins/src.ctf.lttng-live/test_live \ |
7bb90dd0 | 54 | python-plugin-provider/bt_plugin_test_python_plugin_provider.py \ |
644e0364 | 55 | python-plugin-provider/test_python_plugin_provider \ |
7bb90dd0 | 56 | python-plugin-provider/test_python_plugin_provider.py |
cd1c5347 | 57 | |
7bb90dd0 | 58 | TESTS_BINDINGS = |
9e607e7c JG |
59 | |
60 | if ENABLE_PYTHON_BINDINGS | |
b04a139e | 61 | TESTS_BINDINGS += bindings/python/bt2/test_python_bt2 |
cd1c5347 PP |
62 | endif |
63 | ||
fac21c87 PP |
64 | TESTS_ARGPAR = \ |
65 | argpar/test_argpar | |
66 | ||
cd1c5347 | 67 | TESTS_CLI = \ |
595cc8e0 | 68 | cli/convert/test_convert_args \ |
4bf5c85f | 69 | cli/test_help \ |
7bb90dd0 | 70 | cli/test_intersection \ |
005d49d6 SM |
71 | cli/test_output_path_ctf_non_lttng_trace \ |
72 | cli/test_packet_seq_num \ | |
cd1c5347 | 73 | cli/test_trace_copy \ |
005d49d6 | 74 | cli/test_trace_read \ |
cd1c5347 PP |
75 | cli/test_trimmer |
76 | ||
77 | TESTS_LIB = \ | |
21d04293 | 78 | lib/test_bt_values \ |
6162e6b7 | 79 | lib/test_bt_uuid \ |
21d04293 | 80 | lib/test_graph_topo \ |
8c20dd54 PP |
81 | lib/test_trace_ir_ref \ |
82 | lib/test_simple_sink | |
cd1c5347 | 83 | |
906ac65f PP |
84 | TESTS_BITFIELD = \ |
85 | bitfield/test_bitfield | |
86 | ||
331731aa MJ |
87 | TESTS_CTF_WRITER = \ |
88 | ctf-writer/test_ctf_writer | |
89 | ||
cd1c5347 | 90 | if !ENABLE_BUILT_IN_PLUGINS |
644e0364 | 91 | TESTS_LIB += lib/test_plugin |
1805e0b4 PP |
92 | endif |
93 | ||
e30aed9e | 94 | TESTS_PLUGINS = \ |
29a8227a | 95 | plugins/src.ctf.fs/fail/test_fail \ |
1fba7c7b | 96 | plugins/src.ctf.fs/succeed/test_succeed \ |
54d785fa PP |
97 | plugins/sink.ctf.fs/succeed/test_succeed \ |
98 | plugins/sink.text.details/succeed/test_succeed | |
cd1c5347 PP |
99 | |
100 | if !ENABLE_BUILT_IN_PLUGINS | |
d8992d68 | 101 | if ENABLE_PYTHON_BINDINGS |
493917ba | 102 | TESTS_PLUGINS += plugins/src.ctf.fs/query/test_query_support_info |
b34bfe00 FD |
103 | TESTS_PLUGINS += plugins/src.ctf.fs/query/test_query_trace_info |
104 | TESTS_PLUGINS += plugins/src.ctf.fs/query/test_query_metadata_info | |
d3765576 | 105 | endif |
684658b1 PP |
106 | |
107 | if ENABLE_DEBUG_INFO | |
d3765576 FD |
108 | TESTS_PLUGINS += \ |
109 | plugins/flt.lttng-utils.debug-info/test_succeed | |
d8992d68 | 110 | endif |
cd1c5347 PP |
111 | endif |
112 | ||
113 | if ENABLE_DEBUG_INFO | |
114 | TESTS_PLUGINS += \ | |
66251464 PP |
115 | plugins/flt.lttng-utils.debug-info/test_dwarf_i386-linux-gnu \ |
116 | plugins/flt.lttng-utils.debug-info/test_dwarf_powerpc-linux-gnu \ | |
117 | plugins/flt.lttng-utils.debug-info/test_dwarf_powerpc64le-linux-gnu \ | |
118 | plugins/flt.lttng-utils.debug-info/test_dwarf_x86_64-linux-gnu \ | |
119 | plugins/flt.lttng-utils.debug-info/test_bin_info_i386-linux-gnu \ | |
120 | plugins/flt.lttng-utils.debug-info/test_bin_info_powerpc-linux-gnu \ | |
121 | plugins/flt.lttng-utils.debug-info/test_bin_info_powerpc64le-linux-gnu \ | |
122 | plugins/flt.lttng-utils.debug-info/test_bin_info_x86_64-linux-gnu | |
cd1c5347 PP |
123 | endif |
124 | ||
188edac1 SM |
125 | if ENABLE_PYTHON_PLUGINS |
126 | if ENABLE_PYTHON_BINDINGS | |
3b9d10e2 PP |
127 | TESTS_CLI += cli/convert/test_auto_source_discovery_grouping \ |
128 | cli/convert/test_auto_source_discovery_log_level \ | |
129 | cli/convert/test_auto_source_discovery_params | |
38403bf5 FD |
130 | TESTS_PLUGINS += plugins/flt.utils.trimmer/test_trimming \ |
131 | plugins/flt.utils.muxer/succeed/test_succeed | |
188edac1 SM |
132 | endif |
133 | endif | |
134 | ||
584af91e PP |
135 | if HAVE_PYTHON |
136 | TESTS_PLUGINS += plugins/src.ctf.lttng-live/test_live | |
137 | endif | |
138 | ||
cd1c5347 PP |
139 | TESTS_PYTHON_PLUGIN_PROVIDER = |
140 | ||
9e607e7c | 141 | if ENABLE_PYTHON_PLUGINS |
cd1c5347 PP |
142 | TESTS_PYTHON_PLUGIN_PROVIDER += python-plugin-provider/test_python_plugin_provider |
143 | endif | |
144 | ||
42f2718c SM |
145 | TESTS_PARAM_VALIDATION = \ |
146 | param-validation/test_param_validation | |
147 | ||
644e0364 MJ |
148 | LOG_DRIVER_FLAGS = --merge --comments |
149 | LOG_DRIVER = env AM_TAP_AWK='$(AWK)' \ | |
150 | BT_TESTS_SRCDIR='$(abs_top_srcdir)/tests' \ | |
151 | BT_TESTS_BUILDDIR='$(abs_top_builddir)/tests' \ | |
152 | BT_TESTS_AWK_BIN="$(AWK)" \ | |
153 | BT_TESTS_GREP_BIN="$(GREP)" \ | |
154 | BT_TESTS_PYTHON_BIN="$(PYTHON)" \ | |
e23e08c4 | 155 | BT_TESTS_PYTHON_CONFIG_BIN="$(PYTHON_CONFIG)" \ |
644e0364 | 156 | BT_TESTS_SED_BIN="$(SED)" \ |
86f2cc9e | 157 | $(SHELL) $(srcdir)/utils/tap-driver.sh |
11d328de | 158 | |
906ac65f | 159 | TESTS_NO_BITFIELD = \ |
fac21c87 | 160 | $(TESTS_ARGPAR) \ |
906ac65f PP |
161 | $(TESTS_BINDINGS) \ |
162 | $(TESTS_CLI) \ | |
163 | $(TESTS_CTF_WRITER) \ | |
164 | $(TESTS_LIB) \ | |
42f2718c | 165 | $(TESTS_PARAM_VALIDATION) \ |
906ac65f PP |
166 | $(TESTS_PLUGINS) \ |
167 | $(TESTS_PYTHON_PLUGIN_PROVIDER) | |
168 | ||
169 | TESTS = $(TESTS_NO_BITFIELD) $(TESTS_BITFIELD) | |
cd1c5347 PP |
170 | |
171 | define check_target | |
172 | check-$(1): | |
173 | $(MAKE) $(AM_MAKEFLAGS) TESTS="$2" check | |
174 | endef | |
175 | ||
fac21c87 | 176 | $(eval $(call check_target,argpar,$(TESTS_ARGPAR))) |
cd1c5347 | 177 | $(eval $(call check_target,bindings,$(TESTS_BINDINGS))) |
906ac65f | 178 | $(eval $(call check_target,bitfield,$(TESTS_BITFIELD))) |
cd1c5347 | 179 | $(eval $(call check_target,cli,$(TESTS_CLI))) |
331731aa | 180 | $(eval $(call check_target,ctf-writer,$(TESTS_CTF_WRITER))) |
cd1c5347 PP |
181 | $(eval $(call check_target,lib,$(TESTS_LIB))) |
182 | $(eval $(call check_target,plugins,$(TESTS_PLUGINS))) | |
183 | $(eval $(call check_target,python-plugin-provider,$(TESTS_PYTHON_PLUGIN_PROVIDER))) | |
906ac65f PP |
184 | |
185 | check-no-bitfield: | |
186 | $(MAKE) $(AM_MAKEFLAGS) TESTS="$(TESTS_NO_BITFIELD)" check |