Add `babeltrace.` prefix to `trace-info` and `support-info` query objects
[babeltrace.git] / tests / Makefile.am
... / ...
CommitLineData
1SUBDIRS = utils lib bitfield 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.py \
9 bindings/python/bt2/test_component_class.py \
10 bindings/python/bt2/test_component.py \
11 bindings/python/bt2/test_connection.py \
12 bindings/python/bt2/test_ctf_writer_clock.py \
13 bindings/python/bt2/test_event_class.py \
14 bindings/python/bt2/test_event.py \
15 bindings/python/bt2/test_field_class.py \
16 bindings/python/bt2/test_field.py \
17 bindings/python/bt2/test_graph.py \
18 bindings/python/bt2/test_integer_range_set.py \
19 bindings/python/bt2/test_interrupter.py \
20 bindings/python/bt2/test_message_iterator.py \
21 bindings/python/bt2/test_message.py \
22 bindings/python/bt2/test_packet.py \
23 bindings/python/bt2/test_plugin.py \
24 bindings/python/bt2/test_port.py \
25 bindings/python/bt2/test_python_bt2 \
26 bindings/python/bt2/test_query_executor.py \
27 bindings/python/bt2/test_stream_class.py \
28 bindings/python/bt2/test_stream.py \
29 bindings/python/bt2/test_trace_collection_message_iterator.py \
30 bindings/python/bt2/test_trace.py \
31 bindings/python/bt2/test_value.py \
32 bindings/python/bt2/utils.py \
33 cli/auto-source-discovery/test_auto_source_discovery \
34 cli/test_convert_args \
35 cli/test_intersection \
36 cli/test_output_ctf_metadata \
37 cli/test_packet_seq_num \
38 cli/test_trace_copy \
39 cli/test_trace_read \
40 cli/test_trimmer \
41 python-plugin-provider/bt_plugin_test_python_plugin_provider.py \
42 python-plugin-provider/test_python_plugin_provider \
43 python-plugin-provider/test_python_plugin_provider.py
44
45TESTS_BINDINGS =
46
47if ENABLE_PYTHON_BINDINGS
48TESTS_BINDINGS += bindings/python/bt2/test_python_bt2
49endif
50
51TESTS_CLI = \
52 cli/test_trace_read \
53 cli/test_packet_seq_num \
54 cli/test_convert_args \
55 cli/test_intersection \
56 cli/test_trace_copy \
57 cli/test_trimmer
58
59TESTS_LIB = \
60 lib/test_bt_values \
61 lib/test_bt_uuid \
62 lib/test_graph_topo \
63 lib/test_trace_ir_ref
64
65TESTS_BITFIELD = \
66 bitfield/test_bitfield
67
68TESTS_CTF_WRITER = \
69 ctf-writer/test_ctf_writer
70
71if !ENABLE_BUILT_IN_PLUGINS
72TESTS_LIB += lib/test_plugin
73endif
74
75TESTS_PLUGINS = \
76 plugins/src.ctf.fs/succeed/test_succeed \
77 plugins/sink.ctf.fs/succeed/test_succeed
78
79if !ENABLE_BUILT_IN_PLUGINS
80if ENABLE_PYTHON_BINDINGS
81TESTS_PLUGINS += plugins/src.ctf.fs/query/test_query
82endif
83
84if ENABLE_DEBUG_INFO
85TESTS_PLUGINS += \
86 plugins/flt.lttng-utils.debug-info/test_succeed
87endif
88endif
89
90if ENABLE_DEBUG_INFO
91TESTS_PLUGINS += \
92 plugins/flt.lttng-utils.debug-info/test_dwarf_i386-linux-gnu \
93 plugins/flt.lttng-utils.debug-info/test_dwarf_powerpc-linux-gnu \
94 plugins/flt.lttng-utils.debug-info/test_dwarf_powerpc64le-linux-gnu \
95 plugins/flt.lttng-utils.debug-info/test_dwarf_x86_64-linux-gnu \
96 plugins/flt.lttng-utils.debug-info/test_bin_info_i386-linux-gnu \
97 plugins/flt.lttng-utils.debug-info/test_bin_info_powerpc-linux-gnu \
98 plugins/flt.lttng-utils.debug-info/test_bin_info_powerpc64le-linux-gnu \
99 plugins/flt.lttng-utils.debug-info/test_bin_info_x86_64-linux-gnu
100endif
101
102if ENABLE_PYTHON_PLUGINS
103if ENABLE_PYTHON_BINDINGS
104TESTS_CLI += cli/auto-source-discovery/test_auto_source_discovery
105TESTS_PLUGINS += plugins/flt.utils.trimmer/test_trimming
106endif
107endif
108
109TESTS_PYTHON_PLUGIN_PROVIDER =
110
111if ENABLE_PYTHON_PLUGINS
112TESTS_PYTHON_PLUGIN_PROVIDER += python-plugin-provider/test_python_plugin_provider
113endif
114
115LOG_DRIVER_FLAGS = --merge --comments
116LOG_DRIVER = env AM_TAP_AWK='$(AWK)' \
117 BT_TESTS_SRCDIR='$(abs_top_srcdir)/tests' \
118 BT_TESTS_BUILDDIR='$(abs_top_builddir)/tests' \
119 BT_TESTS_AWK_BIN="$(AWK)" \
120 BT_TESTS_GREP_BIN="$(GREP)" \
121 BT_TESTS_PYTHON_BIN="$(PYTHON)" \
122 BT_TESTS_PYTHON_CONFIG_BIN="$(PYTHON_CONFIG)" \
123 BT_TESTS_SED_BIN="$(SED)" \
124 $(SHELL) $(srcdir)/utils/tap-driver.sh
125
126TESTS_NO_BITFIELD = \
127 $(TESTS_BINDINGS) \
128 $(TESTS_CLI) \
129 $(TESTS_CTF_WRITER) \
130 $(TESTS_LIB) \
131 $(TESTS_PLUGINS) \
132 $(TESTS_PYTHON_PLUGIN_PROVIDER)
133
134TESTS = $(TESTS_NO_BITFIELD) $(TESTS_BITFIELD)
135
136define check_target
137check-$(1):
138 $(MAKE) $(AM_MAKEFLAGS) TESTS="$2" check
139endef
140
141$(eval $(call check_target,bindings,$(TESTS_BINDINGS)))
142$(eval $(call check_target,bitfield,$(TESTS_BITFIELD)))
143$(eval $(call check_target,cli,$(TESTS_CLI)))
144$(eval $(call check_target,ctf-writer,$(TESTS_CTF_WRITER)))
145$(eval $(call check_target,lib,$(TESTS_LIB)))
146$(eval $(call check_target,plugins,$(TESTS_PLUGINS)))
147$(eval $(call check_target,python-plugin-provider,$(TESTS_PYTHON_PLUGIN_PROVIDER)))
148
149check-no-bitfield:
150 $(MAKE) $(AM_MAKEFLAGS) TESTS="$(TESTS_NO_BITFIELD)" check
This page took 0.023026 seconds and 4 git commands to generate.